- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
89 lines
2.1 KiB
Java
89 lines
2.1 KiB
Java
package com.applovin.impl;
|
|
|
|
import androidx.core.view.ViewCompat;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
abstract class j1 {
|
|
public final int a;
|
|
|
|
public static String a(int i) {
|
|
return "" + ((char) ((i >> 24) & 255)) + ((char) ((i >> 16) & 255)) + ((char) ((i >> 8) & 255)) + ((char) (i & 255));
|
|
}
|
|
|
|
public static int b(int i) {
|
|
return i & ViewCompat.MEASURED_SIZE_MASK;
|
|
}
|
|
|
|
public static int c(int i) {
|
|
return (i >> 24) & 255;
|
|
}
|
|
|
|
public j1(int i) {
|
|
this.a = i;
|
|
}
|
|
|
|
public String toString() {
|
|
return a(this.a);
|
|
}
|
|
|
|
public static final class b extends j1 {
|
|
public final bh b;
|
|
|
|
public b(int i, bh bhVar) {
|
|
super(i);
|
|
this.b = bhVar;
|
|
}
|
|
}
|
|
|
|
public static final class a extends j1 {
|
|
public final long b;
|
|
public final List c;
|
|
public final List d;
|
|
|
|
@Override // com.applovin.impl.j1
|
|
public String toString() {
|
|
return j1.a(this.a) + " leaves: " + Arrays.toString(this.c.toArray()) + " containers: " + Arrays.toString(this.d.toArray());
|
|
}
|
|
|
|
public a(int i, long j) {
|
|
super(i);
|
|
this.b = j;
|
|
this.c = new ArrayList();
|
|
this.d = new ArrayList();
|
|
}
|
|
|
|
public void a(a aVar) {
|
|
this.d.add(aVar);
|
|
}
|
|
|
|
public b e(int i) {
|
|
int size = this.c.size();
|
|
for (int i2 = 0; i2 < size; i2++) {
|
|
b bVar = (b) this.c.get(i2);
|
|
if (bVar.a == i) {
|
|
return bVar;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public a d(int i) {
|
|
int size = this.d.size();
|
|
for (int i2 = 0; i2 < size; i2++) {
|
|
a aVar = (a) this.d.get(i2);
|
|
if (aVar.a == i) {
|
|
return aVar;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public void a(b bVar) {
|
|
this.c.add(bVar);
|
|
}
|
|
}
|
|
}
|