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,104 @@
package androidx.collection;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class ObjectLongMapKt {
private static final MutableObjectLongMap<Object> EmptyObjectLongMap = new MutableObjectLongMap<>(0);
public static final <K> ObjectLongMap<K> emptyObjectLongMap() {
MutableObjectLongMap<Object> mutableObjectLongMap = EmptyObjectLongMap;
Intrinsics.checkNotNull(mutableObjectLongMap, "null cannot be cast to non-null type androidx.collection.ObjectLongMap<K of androidx.collection.ObjectLongMapKt.emptyObjectLongMap>");
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMap() {
MutableObjectLongMap<Object> mutableObjectLongMap = EmptyObjectLongMap;
Intrinsics.checkNotNull(mutableObjectLongMap, "null cannot be cast to non-null type androidx.collection.ObjectLongMap<K of androidx.collection.ObjectLongMapKt.objectLongMap>");
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j, K k2, long j2) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j, K k2, long j2, K k3, long j3) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j, K k2, long j2, K k3, long j3, K k4, long j4) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
mutableObjectLongMap.set(k4, j4);
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j, K k2, long j2, K k3, long j3, K k4, long j4, K k5, long j5) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
mutableObjectLongMap.set(k4, j4);
mutableObjectLongMap.set(k5, j5);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf() {
return new MutableObjectLongMap<>(0, 1, null);
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j, K k2, long j2) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j, K k2, long j2, K k3, long j3) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j, K k2, long j2, K k3, long j3, K k4, long j4) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
mutableObjectLongMap.set(k4, j4);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j, K k2, long j2, K k3, long j3, K k4, long j4, K k5, long j5) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
mutableObjectLongMap.set(k4, j4);
mutableObjectLongMap.set(k5, j5);
return mutableObjectLongMap;
}
}