Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,111 @@
package com.google.android.gms.internal.ads;
import java.util.Collection;
import java.util.List;
import java.util.ListIterator;
/* loaded from: classes3.dex */
class zzfwf extends zzfwd implements List {
final /* synthetic */ zzfwg zzf;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public zzfwf(zzfwg zzfwgVar, Object obj, List list, zzfwd zzfwdVar) {
super(zzfwgVar, obj, list, zzfwdVar);
this.zzf = zzfwgVar;
}
@Override // java.util.List
public final void add(int i, Object obj) {
int i2;
zzb();
boolean isEmpty = this.zzb.isEmpty();
((List) this.zzb).add(i, obj);
zzfwg zzfwgVar = this.zzf;
i2 = zzfwgVar.zzb;
zzfwgVar.zzb = i2 + 1;
if (isEmpty) {
zza();
}
}
@Override // java.util.List
public final boolean addAll(int i, Collection collection) {
int i2;
if (collection.isEmpty()) {
return false;
}
int size = size();
boolean addAll = ((List) this.zzb).addAll(i, collection);
if (!addAll) {
return addAll;
}
int size2 = this.zzb.size();
zzfwg zzfwgVar = this.zzf;
i2 = zzfwgVar.zzb;
zzfwgVar.zzb = i2 + (size2 - size);
if (size != 0) {
return addAll;
}
zza();
return true;
}
@Override // java.util.List
public final Object get(int i) {
zzb();
return ((List) this.zzb).get(i);
}
@Override // java.util.List
public final int indexOf(Object obj) {
zzb();
return ((List) this.zzb).indexOf(obj);
}
@Override // java.util.List
public final int lastIndexOf(Object obj) {
zzb();
return ((List) this.zzb).lastIndexOf(obj);
}
@Override // java.util.List
public final ListIterator listIterator() {
zzb();
return new zzfwe(this);
}
@Override // java.util.List
public final Object remove(int i) {
int i2;
zzb();
Object remove = ((List) this.zzb).remove(i);
zzfwg zzfwgVar = this.zzf;
i2 = zzfwgVar.zzb;
zzfwgVar.zzb = i2 - 1;
zzc();
return remove;
}
@Override // java.util.List
public final Object set(int i, Object obj) {
zzb();
return ((List) this.zzb).set(i, obj);
}
@Override // java.util.List
public final List subList(int i, int i2) {
zzb();
List subList = ((List) this.zzb).subList(i, i2);
zzfwd zzfwdVar = this.zzc;
if (zzfwdVar == null) {
zzfwdVar = this;
}
return this.zzf.zzh(this.zza, subList, zzfwdVar);
}
@Override // java.util.List
public final ListIterator listIterator(int i) {
zzb();
return new zzfwe(this, i);
}
}