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,65 @@
package com.google.android.gms.internal.ads;
import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;
/* loaded from: classes3.dex */
class zzfxg extends zzfxh {
Object[] zza;
int zzb;
boolean zzc;
public zzfxg(int i) {
zzfwk.zza(i, "initialCapacity");
this.zza = new Object[i];
this.zzb = 0;
}
private final void zzf(int i) {
int length = this.zza.length;
int zze = zzfxh.zze(length, this.zzb + i);
if (zze > length || this.zzc) {
this.zza = Arrays.copyOf(this.zza, zze);
this.zzc = false;
}
}
@Override // com.google.android.gms.internal.ads.zzfxh
public /* bridge */ /* synthetic */ zzfxh zzb(Object obj) {
throw null;
}
public final zzfxh zzc(Iterable iterable) {
if (iterable instanceof Collection) {
Collection collection = (Collection) iterable;
zzf(collection.size());
if (collection instanceof zzfxi) {
this.zzb = ((zzfxi) collection).zza(this.zza, this.zzb);
return this;
}
}
Iterator it = iterable.iterator();
while (it.hasNext()) {
zzb(it.next());
}
return this;
}
public final void zzd(Object[] objArr, int i) {
zzfyx.zzb(objArr, 2);
zzf(2);
System.arraycopy(objArr, 0, this.zza, this.zzb, 2);
this.zzb += 2;
}
public final zzfxg zza(Object obj) {
obj.getClass();
zzf(1);
Object[] objArr = this.zza;
int i = this.zzb;
this.zzb = i + 1;
objArr[i] = obj;
return this;
}
}