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,100 @@
package com.google.android.gms.internal.ads;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
/* loaded from: classes3.dex */
class zzfvt extends zzfyj {
final transient Map zza;
final /* synthetic */ zzfwg zzb;
public zzfvt(zzfwg zzfwgVar, Map map) {
this.zzb = zzfwgVar;
this.zza = map;
}
@Override // java.util.AbstractMap, java.util.Map
public final void clear() {
Map map;
zzfwg zzfwgVar = this.zzb;
Map map2 = this.zza;
map = zzfwgVar.zza;
if (map2 == map) {
zzfwgVar.zzp();
} else {
zzfxx.zzb(new zzfvs(this));
}
}
@Override // java.util.AbstractMap, java.util.Map
public final boolean equals(Object obj) {
return this == obj || this.zza.equals(obj);
}
@Override // java.util.AbstractMap, java.util.Map
public final /* bridge */ /* synthetic */ Object get(Object obj) {
Collection collection = (Collection) zzfyk.zza(this.zza, obj);
if (collection == null) {
return null;
}
return this.zzb.zzc(obj, collection);
}
@Override // java.util.AbstractMap, java.util.Map
public final int hashCode() {
return this.zza.hashCode();
}
@Override // com.google.android.gms.internal.ads.zzfyj, java.util.AbstractMap, java.util.Map
public Set keySet() {
return this.zzb.zzt();
}
@Override // java.util.AbstractMap, java.util.Map
public final /* bridge */ /* synthetic */ Object remove(Object obj) {
int i;
Collection collection = (Collection) this.zza.remove(obj);
if (collection == null) {
return null;
}
Collection zza = this.zzb.zza();
zza.addAll(collection);
zzfwg zzfwgVar = this.zzb;
i = zzfwgVar.zzb;
zzfwgVar.zzb = i - collection.size();
collection.clear();
return zza;
}
@Override // java.util.AbstractMap, java.util.Map
public final int size() {
return this.zza.size();
}
@Override // java.util.AbstractMap
public final String toString() {
return this.zza.toString();
}
public final Map.Entry zza(Map.Entry entry) {
Object key = entry.getKey();
return new zzfxj(key, this.zzb.zzc(key, (Collection) entry.getValue()));
}
@Override // com.google.android.gms.internal.ads.zzfyj
public final Set zzb() {
return new zzfvr(this);
}
@Override // java.util.AbstractMap, java.util.Map
public final boolean containsKey(Object obj) {
Map map = this.zza;
map.getClass();
try {
return map.containsKey(obj);
} catch (ClassCastException | NullPointerException unused) {
return false;
}
}
}