Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class zaa implements IInterface {
|
||||
private final IBinder zaa;
|
||||
private final String zab;
|
||||
|
||||
protected zaa(IBinder iBinder, String str) {
|
||||
this.zaa = iBinder;
|
||||
this.zab = str;
|
||||
}
|
||||
|
||||
@Override // android.os.IInterface
|
||||
public final IBinder asBinder() {
|
||||
return this.zaa;
|
||||
}
|
||||
|
||||
protected final Parcel zaa() {
|
||||
Parcel parcelObtain = Parcel.obtain();
|
||||
parcelObtain.writeInterfaceToken(this.zab);
|
||||
return parcelObtain;
|
||||
}
|
||||
|
||||
protected final Parcel zab(int i, Parcel parcel) throws RemoteException {
|
||||
Parcel parcelObtain = Parcel.obtain();
|
||||
try {
|
||||
try {
|
||||
this.zaa.transact(2, parcel, parcelObtain, 0);
|
||||
parcelObtain.readException();
|
||||
return parcelObtain;
|
||||
} catch (RuntimeException e) {
|
||||
parcelObtain.recycle();
|
||||
throw e;
|
||||
}
|
||||
} finally {
|
||||
parcel.recycle();
|
||||
}
|
||||
}
|
||||
|
||||
protected final void zac(int i, Parcel parcel) throws RemoteException {
|
||||
Parcel parcelObtain = Parcel.obtain();
|
||||
try {
|
||||
this.zaa.transact(i, parcel, parcelObtain, 0);
|
||||
parcelObtain.readException();
|
||||
} finally {
|
||||
parcel.recycle();
|
||||
parcelObtain.recycle();
|
||||
}
|
||||
}
|
||||
|
||||
protected final void zad(int i, Parcel parcel) throws RemoteException {
|
||||
try {
|
||||
this.zaa.transact(1, parcel, null, 1);
|
||||
} finally {
|
||||
parcel.recycle();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.os.Binder;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class zab extends Binder implements IInterface {
|
||||
protected zab(String str) {
|
||||
attachInterface(this, str);
|
||||
}
|
||||
|
||||
@Override // android.os.IInterface
|
||||
public final IBinder asBinder() {
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override // android.os.Binder
|
||||
public final boolean onTransact(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
||||
if (i <= 16777215) {
|
||||
parcel.enforceInterface(getInterfaceDescriptor());
|
||||
} else if (super.onTransact(i, parcel, parcel2, i2)) {
|
||||
return true;
|
||||
}
|
||||
return zaa(i, parcel, parcel2, i2);
|
||||
}
|
||||
|
||||
protected boolean zaa(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
||||
throw null;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.os.BadParcelableException;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zac {
|
||||
private static final ClassLoader zaa = zac.class.getClassLoader();
|
||||
|
||||
private zac() {
|
||||
}
|
||||
|
||||
public static Parcelable zaa(Parcel parcel, Parcelable.Creator creator) {
|
||||
if (parcel.readInt() == 0) {
|
||||
return null;
|
||||
}
|
||||
return (Parcelable) creator.createFromParcel(parcel);
|
||||
}
|
||||
|
||||
public static void zab(Parcel parcel) {
|
||||
int iDataAvail = parcel.dataAvail();
|
||||
if (iDataAvail <= 0) {
|
||||
return;
|
||||
}
|
||||
throw new BadParcelableException("Parcel data not fully consumed, unread size: " + iDataAvail);
|
||||
}
|
||||
|
||||
public static void zac(Parcel parcel, Parcelable parcelable) {
|
||||
if (parcelable == null) {
|
||||
parcel.writeInt(0);
|
||||
} else {
|
||||
parcel.writeInt(1);
|
||||
parcelable.writeToParcel(parcel, 0);
|
||||
}
|
||||
}
|
||||
|
||||
public static void zad(Parcel parcel, IInterface iInterface) {
|
||||
if (iInterface == null) {
|
||||
parcel.writeStrongBinder(null);
|
||||
} else {
|
||||
parcel.writeStrongBinder(iInterface.asBinder());
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Inherited;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@Inherited
|
||||
@Target({ElementType.TYPE})
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
public @interface zad {
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Inherited;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@Inherited
|
||||
@Target({ElementType.TYPE})
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
public @interface zae {
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import com.google.android.gms.common.Feature;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zaf {
|
||||
public static final Feature zaa;
|
||||
public static final Feature[] zab;
|
||||
|
||||
static {
|
||||
Feature feature = new Feature("CLIENT_TELEMETRY", 1L);
|
||||
zaa = feature;
|
||||
zab = new Feature[]{feature};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.graphics.drawable.Drawable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zah extends Drawable.ConstantState {
|
||||
private zah() {
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable.ConstantState
|
||||
public final int getChangingConfigurations() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable.ConstantState
|
||||
public final Drawable newDrawable() {
|
||||
return zai.zaa;
|
||||
}
|
||||
|
||||
/* synthetic */ zah(zag zagVar) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.ColorFilter;
|
||||
import android.graphics.drawable.Drawable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zai extends Drawable {
|
||||
private static final zai zaa = new zai();
|
||||
private static final zah zab = new zah(null);
|
||||
|
||||
private zai() {
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final void draw(Canvas canvas) {
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final Drawable.ConstantState getConstantState() {
|
||||
return zab;
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final int getOpacity() {
|
||||
return -2;
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final void setAlpha(int i) {
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final void setColorFilter(ColorFilter colorFilter) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.graphics.drawable.Drawable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zaj extends Drawable.ConstantState {
|
||||
int zaa;
|
||||
int zab;
|
||||
|
||||
zaj(zaj zajVar) {
|
||||
if (zajVar != null) {
|
||||
this.zaa = zajVar.zaa;
|
||||
this.zab = zajVar.zab;
|
||||
}
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable.ConstantState
|
||||
public final int getChangingConfigurations() {
|
||||
return this.zaa;
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable.ConstantState
|
||||
public final Drawable newDrawable() {
|
||||
return new zak(this);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,265 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.graphics.ColorFilter;
|
||||
import android.graphics.Rect;
|
||||
import android.graphics.drawable.Drawable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zak extends Drawable implements Drawable.Callback {
|
||||
private int zaa;
|
||||
private long zab;
|
||||
private int zac;
|
||||
private int zad;
|
||||
private int zae;
|
||||
private int zaf;
|
||||
private boolean zag;
|
||||
private boolean zah;
|
||||
private zaj zai;
|
||||
private Drawable zaj;
|
||||
private Drawable zak;
|
||||
private boolean zal;
|
||||
private boolean zam;
|
||||
private boolean zan;
|
||||
private int zao;
|
||||
|
||||
public zak(Drawable drawable, Drawable drawable2) {
|
||||
this(null);
|
||||
drawable = drawable == null ? zai.zaa : drawable;
|
||||
this.zaj = drawable;
|
||||
drawable.setCallback(this);
|
||||
zaj zajVar = this.zai;
|
||||
zajVar.zab = drawable.getChangingConfigurations() | zajVar.zab;
|
||||
drawable2 = drawable2 == null ? zai.zaa : drawable2;
|
||||
this.zak = drawable2;
|
||||
drawable2.setCallback(this);
|
||||
zaj zajVar2 = this.zai;
|
||||
zajVar2.zab = drawable2.getChangingConfigurations() | zajVar2.zab;
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final int getChangingConfigurations() {
|
||||
int changingConfigurations = super.getChangingConfigurations();
|
||||
zaj zajVar = this.zai;
|
||||
return changingConfigurations | zajVar.zaa | zajVar.zab;
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final Drawable.ConstantState getConstantState() {
|
||||
if (!zac()) {
|
||||
return null;
|
||||
}
|
||||
this.zai.zaa = getChangingConfigurations();
|
||||
return this.zai;
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final int getIntrinsicHeight() {
|
||||
return Math.max(this.zaj.getIntrinsicHeight(), this.zak.getIntrinsicHeight());
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final int getIntrinsicWidth() {
|
||||
return Math.max(this.zaj.getIntrinsicWidth(), this.zak.getIntrinsicWidth());
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final int getOpacity() {
|
||||
if (!this.zan) {
|
||||
this.zao = Drawable.resolveOpacity(this.zaj.getOpacity(), this.zak.getOpacity());
|
||||
this.zan = true;
|
||||
}
|
||||
return this.zao;
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable.Callback
|
||||
public final void invalidateDrawable(Drawable drawable) {
|
||||
Drawable.Callback callback = getCallback();
|
||||
if (callback != null) {
|
||||
callback.invalidateDrawable(this);
|
||||
}
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final Drawable mutate() {
|
||||
if (!this.zah && super.mutate() == this) {
|
||||
if (!zac()) {
|
||||
throw new IllegalStateException("One or more children of this LayerDrawable does not have constant state; this drawable cannot be mutated.");
|
||||
}
|
||||
this.zaj.mutate();
|
||||
this.zak.mutate();
|
||||
this.zah = true;
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
protected final void onBoundsChange(Rect rect) {
|
||||
this.zaj.setBounds(rect);
|
||||
this.zak.setBounds(rect);
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable.Callback
|
||||
public final void scheduleDrawable(Drawable drawable, Runnable runnable, long j) {
|
||||
Drawable.Callback callback = getCallback();
|
||||
if (callback != null) {
|
||||
callback.scheduleDrawable(this, runnable, j);
|
||||
}
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final void setAlpha(int i) {
|
||||
if (this.zaf == this.zad) {
|
||||
this.zaf = i;
|
||||
}
|
||||
this.zad = i;
|
||||
invalidateSelf();
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
public final void setColorFilter(ColorFilter colorFilter) {
|
||||
this.zaj.setColorFilter(colorFilter);
|
||||
this.zak.setColorFilter(colorFilter);
|
||||
}
|
||||
|
||||
@Override // android.graphics.drawable.Drawable.Callback
|
||||
public final void unscheduleDrawable(Drawable drawable, Runnable runnable) {
|
||||
Drawable.Callback callback = getCallback();
|
||||
if (callback != null) {
|
||||
callback.unscheduleDrawable(this, runnable);
|
||||
}
|
||||
}
|
||||
|
||||
public final Drawable zaa() {
|
||||
return this.zak;
|
||||
}
|
||||
|
||||
public final void zab(int i) {
|
||||
this.zac = this.zad;
|
||||
this.zaf = 0;
|
||||
this.zae = 250;
|
||||
this.zaa = 1;
|
||||
invalidateSelf();
|
||||
}
|
||||
|
||||
public final boolean zac() {
|
||||
if (!this.zal) {
|
||||
boolean z = false;
|
||||
if (this.zaj.getConstantState() != null && this.zak.getConstantState() != null) {
|
||||
z = true;
|
||||
}
|
||||
this.zam = z;
|
||||
this.zal = true;
|
||||
}
|
||||
return this.zam;
|
||||
}
|
||||
|
||||
/* JADX WARN: Removed duplicated region for block: B:25:0x005b */
|
||||
/* JADX WARN: Removed duplicated region for block: B:36:? A[RETURN, SYNTHETIC] */
|
||||
@Override // android.graphics.drawable.Drawable
|
||||
/*
|
||||
Code decompiled incorrectly, please refer to instructions dump.
|
||||
To view partially-correct code enable 'Show inconsistent code' option in preferences
|
||||
*/
|
||||
public final void draw(android.graphics.Canvas r8) {
|
||||
/*
|
||||
r7 = this;
|
||||
int r0 = r7.zaa
|
||||
r1 = 2
|
||||
r2 = 0
|
||||
r3 = 1
|
||||
if (r0 == r3) goto L3a
|
||||
if (r0 == r1) goto Lb
|
||||
L9:
|
||||
r4 = r3
|
||||
goto L43
|
||||
Lb:
|
||||
long r0 = r7.zab
|
||||
r4 = 0
|
||||
int r0 = (r0 > r4 ? 1 : (r0 == r4 ? 0 : -1))
|
||||
if (r0 < 0) goto L9
|
||||
long r0 = android.os.SystemClock.uptimeMillis()
|
||||
long r4 = r7.zab
|
||||
long r0 = r0 - r4
|
||||
int r4 = r7.zae
|
||||
float r4 = (float) r4
|
||||
float r0 = (float) r0
|
||||
float r0 = r0 / r4
|
||||
r1 = 1065353216(0x3f800000, float:1.0)
|
||||
int r4 = (r0 > r1 ? 1 : (r0 == r1 ? 0 : -1))
|
||||
if (r4 < 0) goto L27
|
||||
r4 = r3
|
||||
goto L28
|
||||
L27:
|
||||
r4 = r2
|
||||
L28:
|
||||
if (r4 == 0) goto L2c
|
||||
r7.zaa = r2
|
||||
L2c:
|
||||
float r0 = java.lang.Math.min(r0, r1)
|
||||
int r1 = r7.zac
|
||||
float r1 = (float) r1
|
||||
float r1 = r1 * r0
|
||||
r0 = 0
|
||||
float r1 = r1 + r0
|
||||
int r0 = (int) r1
|
||||
r7.zaf = r0
|
||||
goto L43
|
||||
L3a:
|
||||
long r4 = android.os.SystemClock.uptimeMillis()
|
||||
r7.zab = r4
|
||||
r7.zaa = r1
|
||||
r4 = r2
|
||||
L43:
|
||||
int r0 = r7.zaf
|
||||
boolean r1 = r7.zag
|
||||
android.graphics.drawable.Drawable r5 = r7.zaj
|
||||
android.graphics.drawable.Drawable r6 = r7.zak
|
||||
if (r4 == 0) goto L62
|
||||
if (r1 == 0) goto L52
|
||||
if (r0 != 0) goto L57
|
||||
goto L53
|
||||
L52:
|
||||
r2 = r0
|
||||
L53:
|
||||
r5.draw(r8)
|
||||
r0 = r2
|
||||
L57:
|
||||
int r1 = r7.zad
|
||||
if (r0 != r1) goto L61
|
||||
r6.setAlpha(r1)
|
||||
r6.draw(r8)
|
||||
L61:
|
||||
return
|
||||
L62:
|
||||
if (r1 == 0) goto L6b
|
||||
int r1 = r7.zad
|
||||
int r1 = r1 - r0
|
||||
r5.setAlpha(r1)
|
||||
r2 = r3
|
||||
L6b:
|
||||
r5.draw(r8)
|
||||
if (r2 == 0) goto L75
|
||||
int r1 = r7.zad
|
||||
r5.setAlpha(r1)
|
||||
L75:
|
||||
if (r0 <= 0) goto L82
|
||||
r6.setAlpha(r0)
|
||||
r6.draw(r8)
|
||||
int r8 = r7.zad
|
||||
r6.setAlpha(r8)
|
||||
L82:
|
||||
r7.invalidateSelf()
|
||||
return
|
||||
*/
|
||||
throw new UnsupportedOperationException("Method not decompiled: com.google.android.gms.internal.base.zak.draw(android.graphics.Canvas):void");
|
||||
}
|
||||
|
||||
zak(zaj zajVar) {
|
||||
this.zaa = 0;
|
||||
this.zad = 255;
|
||||
this.zaf = 0;
|
||||
this.zag = true;
|
||||
this.zai = new zaj(zajVar);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.graphics.Canvas;
|
||||
import android.widget.ImageView;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zal extends ImageView {
|
||||
@Override // android.widget.ImageView, android.view.View
|
||||
protected final void onDraw(Canvas canvas) {
|
||||
throw null;
|
||||
}
|
||||
|
||||
@Override // android.widget.ImageView, android.view.View
|
||||
protected final void onMeasure(int i, int i2) {
|
||||
throw null;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import androidx.collection.LruCache;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zam extends LruCache {
|
||||
public zam() {
|
||||
super(10);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.os.Build;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zan {
|
||||
static boolean zaa() {
|
||||
return Build.VERSION.SDK_INT >= 33;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import androidx.core.content.ContextCompat;
|
||||
import com.google.errorprone.annotations.ResultIgnorabilityUnspecified;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zao extends ContextCompat {
|
||||
@ResultIgnorabilityUnspecified
|
||||
@Deprecated
|
||||
public static Intent zaa(Context context, BroadcastReceiver broadcastReceiver, IntentFilter intentFilter) {
|
||||
if (zan.zaa()) {
|
||||
return context.registerReceiver(broadcastReceiver, intentFilter, true != zan.zaa() ? 0 : 2);
|
||||
}
|
||||
return context.registerReceiver(broadcastReceiver, intentFilter);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.os.Build;
|
||||
import androidx.sqlite.driver.bundled.BundledSQLite;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zap {
|
||||
public static final int zaa;
|
||||
|
||||
static {
|
||||
zaa = Build.VERSION.SDK_INT >= 31 ? BundledSQLite.SQLITE_OPEN_EXRESCODE : 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.ThreadFactory;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zaq {
|
||||
ExecutorService zaa(ThreadFactory threadFactory, int i);
|
||||
|
||||
ExecutorService zab(int i, int i2);
|
||||
|
||||
ExecutorService zac(int i, ThreadFactory threadFactory, int i2);
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.concurrent.LinkedBlockingQueue;
|
||||
import java.util.concurrent.ThreadFactory;
|
||||
import java.util.concurrent.ThreadPoolExecutor;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zas implements zaq {
|
||||
private zas() {
|
||||
}
|
||||
|
||||
/* synthetic */ zas(zar zarVar) {
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.base.zaq
|
||||
public final ExecutorService zaa(ThreadFactory threadFactory, int i) {
|
||||
return zac(1, threadFactory, 1);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.base.zaq
|
||||
public final ExecutorService zab(int i, int i2) {
|
||||
return zac(4, Executors.defaultThreadFactory(), 2);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.base.zaq
|
||||
public final ExecutorService zac(int i, ThreadFactory threadFactory, int i2) {
|
||||
ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(i, i, 60L, TimeUnit.SECONDS, new LinkedBlockingQueue(), threadFactory);
|
||||
threadPoolExecutor.allowCoreThreadTimeOut(true);
|
||||
return Executors.unconfigurableExecutorService(threadPoolExecutor);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zat {
|
||||
private static final zaq zaa;
|
||||
private static volatile zaq zab;
|
||||
|
||||
static {
|
||||
zas zasVar = new zas(null);
|
||||
zaa = zasVar;
|
||||
zab = zasVar;
|
||||
}
|
||||
|
||||
public static zaq zaa() {
|
||||
return zab;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class zau extends Handler {
|
||||
private final Looper zaa;
|
||||
|
||||
public zau() {
|
||||
this.zaa = Looper.getMainLooper();
|
||||
}
|
||||
|
||||
public zau(Looper looper) {
|
||||
super(looper);
|
||||
this.zaa = Looper.getMainLooper();
|
||||
}
|
||||
|
||||
public zau(Looper looper, Handler.Callback callback) {
|
||||
super(looper, callback);
|
||||
this.zaa = Looper.getMainLooper();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.base;
|
||||
|
||||
import com.google.android.gms.common.Feature;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zav {
|
||||
public static final Feature zaa;
|
||||
public static final Feature[] zab;
|
||||
|
||||
static {
|
||||
Feature feature = new Feature("moduleinstall", 7L);
|
||||
zaa = feature;
|
||||
zab = new Feature[]{feature};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class zza implements IInterface {
|
||||
private final IBinder zza;
|
||||
private final String zzb;
|
||||
|
||||
protected zza(IBinder iBinder, String str) {
|
||||
this.zza = iBinder;
|
||||
this.zzb = str;
|
||||
}
|
||||
|
||||
@Override // android.os.IInterface
|
||||
public final IBinder asBinder() {
|
||||
return this.zza;
|
||||
}
|
||||
|
||||
protected final Parcel zzB(int i, Parcel parcel) throws RemoteException {
|
||||
Parcel parcelObtain = Parcel.obtain();
|
||||
try {
|
||||
try {
|
||||
this.zza.transact(i, parcel, parcelObtain, 0);
|
||||
parcelObtain.readException();
|
||||
return parcelObtain;
|
||||
} catch (RuntimeException e) {
|
||||
parcelObtain.recycle();
|
||||
throw e;
|
||||
}
|
||||
} finally {
|
||||
parcel.recycle();
|
||||
}
|
||||
}
|
||||
|
||||
protected final void zzC(int i, Parcel parcel) throws RemoteException {
|
||||
Parcel parcelObtain = Parcel.obtain();
|
||||
try {
|
||||
this.zza.transact(1, parcel, parcelObtain, 0);
|
||||
parcelObtain.readException();
|
||||
} finally {
|
||||
parcel.recycle();
|
||||
parcelObtain.recycle();
|
||||
}
|
||||
}
|
||||
|
||||
protected final void zzD(int i, Parcel parcel) throws RemoteException {
|
||||
try {
|
||||
this.zza.transact(2, parcel, null, 1);
|
||||
} finally {
|
||||
parcel.recycle();
|
||||
}
|
||||
}
|
||||
|
||||
protected final Parcel zza() {
|
||||
Parcel parcelObtain = Parcel.obtain();
|
||||
parcelObtain.writeInterfaceToken(this.zzb);
|
||||
return parcelObtain;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
class zzaa extends zzab {
|
||||
Object[] zza = new Object[4];
|
||||
int zzb = 0;
|
||||
boolean zzc;
|
||||
|
||||
zzaa(int i) {
|
||||
}
|
||||
|
||||
public final zzaa zza(Object obj) {
|
||||
obj.getClass();
|
||||
int i = this.zzb;
|
||||
int i2 = i + 1;
|
||||
Object[] objArr = this.zza;
|
||||
int length = objArr.length;
|
||||
if (length < i2) {
|
||||
int i3 = length + (length >> 1) + 1;
|
||||
if (i3 < i2) {
|
||||
int iHighestOneBit = Integer.highestOneBit(i);
|
||||
i3 = iHighestOneBit + iHighestOneBit;
|
||||
}
|
||||
if (i3 < 0) {
|
||||
i3 = Integer.MAX_VALUE;
|
||||
}
|
||||
this.zza = Arrays.copyOf(objArr, i3);
|
||||
this.zzc = false;
|
||||
} else if (this.zzc) {
|
||||
this.zza = (Object[]) objArr.clone();
|
||||
this.zzc = false;
|
||||
}
|
||||
Object[] objArr2 = this.zza;
|
||||
int i4 = this.zzb;
|
||||
this.zzb = i4 + 1;
|
||||
objArr2[i4] = obj;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import com.google.errorprone.annotations.DoNotMock;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@DoNotMock
|
||||
public class zzab {
|
||||
zzab() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,116 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import com.google.errorprone.annotations.DoNotMock;
|
||||
import java.io.Serializable;
|
||||
import java.util.AbstractCollection;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Spliterator;
|
||||
import java.util.Spliterators;
|
||||
import javax.annotation.CheckForNull;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@DoNotMock("Use ImmutableList.of or another implementation")
|
||||
@NullMarked
|
||||
public abstract class zzac extends AbstractCollection implements Serializable {
|
||||
private static final Object[] zza = new Object[0];
|
||||
|
||||
zzac() {
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean add(Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean addAll(Collection collection) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final void clear() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean remove(@CheckForNull Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean removeAll(Collection collection) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean retainAll(Collection collection) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.Collection, java.lang.Iterable
|
||||
public final Spliterator spliterator() {
|
||||
return Spliterators.spliterator(this, 1296);
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
public final Object[] toArray() {
|
||||
return toArray(zza);
|
||||
}
|
||||
|
||||
int zza(Object[] objArr, int i) {
|
||||
throw null;
|
||||
}
|
||||
|
||||
int zzb() {
|
||||
throw null;
|
||||
}
|
||||
|
||||
int zzc() {
|
||||
throw null;
|
||||
}
|
||||
|
||||
public zzag zzd() {
|
||||
throw null;
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection, java.lang.Iterable
|
||||
/* JADX INFO: renamed from: zze, reason: merged with bridge method [inline-methods] */
|
||||
public abstract zzaj iterator();
|
||||
|
||||
abstract boolean zzf();
|
||||
|
||||
@CheckForNull
|
||||
Object[] zzg() {
|
||||
throw null;
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
public final Object[] toArray(Object[] objArr) {
|
||||
objArr.getClass();
|
||||
int size = size();
|
||||
int length = objArr.length;
|
||||
if (length < size) {
|
||||
Object[] objArrZzg = zzg();
|
||||
if (objArrZzg != null) {
|
||||
return Arrays.copyOfRange(objArrZzg, zzc(), zzb(), objArr.getClass());
|
||||
}
|
||||
if (length != 0) {
|
||||
objArr = Arrays.copyOf(objArr, 0);
|
||||
}
|
||||
objArr = Arrays.copyOf(objArr, size);
|
||||
} else if (length > size) {
|
||||
objArr[size] = null;
|
||||
}
|
||||
zza(objArr, 0);
|
||||
return objArr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.Iterator;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzad extends zzaa {
|
||||
public zzad() {
|
||||
super(4);
|
||||
}
|
||||
|
||||
public final zzad zzb(Object obj) {
|
||||
super.zza(obj);
|
||||
return this;
|
||||
}
|
||||
|
||||
public final zzad zzc(Iterator it) {
|
||||
while (it.hasNext()) {
|
||||
super.zza(it.next());
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
zzad(int i) {
|
||||
super(4);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzae extends zzz {
|
||||
private final zzag zza;
|
||||
|
||||
zzae(zzag zzagVar, int i) {
|
||||
super(zzagVar.size(), i);
|
||||
this.zza = zzagVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzz
|
||||
protected final Object zza(int i) {
|
||||
return this.zza.get(i);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.List;
|
||||
import javax.annotation.CheckForNull;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzaf extends zzag {
|
||||
final transient int zza;
|
||||
final transient int zzb;
|
||||
final /* synthetic */ zzag zzc;
|
||||
|
||||
zzaf(zzag zzagVar, int i, int i2) {
|
||||
this.zzc = zzagVar;
|
||||
this.zza = i;
|
||||
this.zzb = i2;
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
public final Object get(int i) {
|
||||
zzs.zza(i, this.zzb, "index");
|
||||
return this.zzc.get(i + this.zza);
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection, java.util.List
|
||||
public final int size() {
|
||||
return this.zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzag, java.util.List
|
||||
public final /* bridge */ /* synthetic */ List subList(int i, int i2) {
|
||||
return subList(i, i2);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
final int zzb() {
|
||||
return this.zzc.zzc() + this.zza + this.zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
final int zzc() {
|
||||
return this.zzc.zzc() + this.zza;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
final boolean zzf() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
@CheckForNull
|
||||
final Object[] zzg() {
|
||||
return this.zzc.zzg();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzag
|
||||
/* JADX INFO: renamed from: zzh */
|
||||
public final zzag subList(int i, int i2) {
|
||||
zzs.zzc(i, i2, this.zzb);
|
||||
int i3 = this.zza;
|
||||
return this.zzc.subList(i + i3, i2 + i3);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,218 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.ListIterator;
|
||||
import java.util.RandomAccess;
|
||||
import javax.annotation.CheckForNull;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public abstract class zzag extends zzac implements List, RandomAccess {
|
||||
private static final zzak zza = new zzae(zzai.zza, 0);
|
||||
|
||||
zzag() {
|
||||
}
|
||||
|
||||
static zzag zzi(Object[] objArr, int i) {
|
||||
return i == 0 ? zzai.zza : new zzai(objArr, i);
|
||||
}
|
||||
|
||||
public static zzag zzk(Collection collection) {
|
||||
if (!(collection instanceof zzac)) {
|
||||
Object[] array = collection.toArray();
|
||||
int length = array.length;
|
||||
zzah.zza(array, length);
|
||||
return zzi(array, length);
|
||||
}
|
||||
zzag zzagVarZzd = ((zzac) collection).zzd();
|
||||
if (!zzagVarZzd.zzf()) {
|
||||
return zzagVarZzd;
|
||||
}
|
||||
Object[] array2 = zzagVarZzd.toArray();
|
||||
return zzi(array2, array2.length);
|
||||
}
|
||||
|
||||
public static zzag zzl() {
|
||||
return zzai.zza;
|
||||
}
|
||||
|
||||
public static zzag zzm(Object obj) {
|
||||
Object[] objArr = {obj};
|
||||
zzah.zza(objArr, 1);
|
||||
return zzi(objArr, 1);
|
||||
}
|
||||
|
||||
public static zzag zzn(Object obj, Object obj2) {
|
||||
Object[] objArr = {obj, obj2};
|
||||
zzah.zza(objArr, 2);
|
||||
return zzi(objArr, 2);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
@Deprecated
|
||||
public final void add(int i, Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
@Deprecated
|
||||
public final boolean addAll(int i, Collection collection) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection, java.util.List
|
||||
public final boolean contains(@CheckForNull Object obj) {
|
||||
return indexOf(obj) >= 0;
|
||||
}
|
||||
|
||||
@Override // java.util.Collection, java.util.List
|
||||
public final boolean equals(@CheckForNull Object obj) {
|
||||
if (obj == this) {
|
||||
return true;
|
||||
}
|
||||
if (obj instanceof List) {
|
||||
List list = (List) obj;
|
||||
int size = size();
|
||||
if (size == list.size()) {
|
||||
if (list instanceof RandomAccess) {
|
||||
for (int i = 0; i < size; i++) {
|
||||
if (zzr.zza(get(i), list.get(i))) {
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
Iterator it = iterator();
|
||||
Iterator it2 = list.iterator();
|
||||
while (true) {
|
||||
if (it.hasNext()) {
|
||||
if (!it2.hasNext() || !zzr.zza(it.next(), it2.next())) {
|
||||
break;
|
||||
}
|
||||
} else if (!it2.hasNext()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override // java.util.Collection, java.util.List
|
||||
public final int hashCode() {
|
||||
int size = size();
|
||||
int iHashCode = 1;
|
||||
for (int i = 0; i < size; i++) {
|
||||
iHashCode = (iHashCode * 31) + get(i).hashCode();
|
||||
}
|
||||
return iHashCode;
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
public final int indexOf(@CheckForNull Object obj) {
|
||||
if (obj == null) {
|
||||
return -1;
|
||||
}
|
||||
int size = size();
|
||||
for (int i = 0; i < size; i++) {
|
||||
if (obj.equals(get(i))) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac, java.util.AbstractCollection, java.util.Collection, java.lang.Iterable
|
||||
public final /* synthetic */ Iterator iterator() {
|
||||
return listIterator(0);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
public final int lastIndexOf(@CheckForNull Object obj) {
|
||||
if (obj == null) {
|
||||
return -1;
|
||||
}
|
||||
for (int size = size() - 1; size >= 0; size--) {
|
||||
if (obj.equals(get(size))) {
|
||||
return size;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
public final /* synthetic */ ListIterator listIterator() {
|
||||
return listIterator(0);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
@Deprecated
|
||||
public final Object remove(int i) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
@Deprecated
|
||||
public final Object set(int i, Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
int zza(Object[] objArr, int i) {
|
||||
int size = size();
|
||||
for (int i2 = 0; i2 < size; i2++) {
|
||||
objArr[i2] = get(i2);
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
@Deprecated
|
||||
public final zzag zzd() {
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
/* JADX INFO: renamed from: zze */
|
||||
public final zzaj iterator() {
|
||||
return listIterator(0);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
/* JADX INFO: renamed from: zzh, reason: merged with bridge method [inline-methods] */
|
||||
public zzag subList(int i, int i2) {
|
||||
zzs.zzc(i, i2, size());
|
||||
int i3 = i2 - i;
|
||||
return i3 == size() ? this : i3 == 0 ? zzai.zza : new zzaf(this, i, i3);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
/* JADX INFO: renamed from: zzo, reason: merged with bridge method [inline-methods] */
|
||||
public final zzak listIterator(int i) {
|
||||
zzs.zzb(i, size(), "index");
|
||||
return isEmpty() ? zza : new zzae(this, i);
|
||||
}
|
||||
|
||||
public static zzag zzj(Iterable iterable) {
|
||||
iterable.getClass();
|
||||
if (iterable instanceof Collection) {
|
||||
return zzk((Collection) iterable);
|
||||
}
|
||||
Iterator it = iterable.iterator();
|
||||
if (!it.hasNext()) {
|
||||
return zzai.zza;
|
||||
}
|
||||
Object next = it.next();
|
||||
if (!it.hasNext()) {
|
||||
return zzm(next);
|
||||
}
|
||||
zzad zzadVar = new zzad(4);
|
||||
zzadVar.zzb(next);
|
||||
zzadVar.zzc(it);
|
||||
zzadVar.zzc = true;
|
||||
return zzi(zzadVar.zza, zzadVar.zzb);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public final class zzah {
|
||||
static Object[] zza(Object[] objArr, int i) {
|
||||
for (int i2 = 0; i2 < i; i2++) {
|
||||
if (objArr[i2] == null) {
|
||||
throw new NullPointerException("at index " + i2);
|
||||
}
|
||||
}
|
||||
return objArr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
final class zzai extends zzag {
|
||||
static final zzag zza = new zzai(new Object[0], 0);
|
||||
final transient Object[] zzb;
|
||||
private final transient int zzc;
|
||||
|
||||
zzai(Object[] objArr, int i) {
|
||||
this.zzb = objArr;
|
||||
this.zzc = i;
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
public final Object get(int i) {
|
||||
zzs.zza(i, this.zzc, "index");
|
||||
Object obj = this.zzb[i];
|
||||
obj.getClass();
|
||||
return obj;
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection, java.util.List
|
||||
public final int size() {
|
||||
return this.zzc;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzag, com.google.android.gms.internal.common.zzac
|
||||
final int zza(Object[] objArr, int i) {
|
||||
System.arraycopy(this.zzb, 0, objArr, 0, this.zzc);
|
||||
return this.zzc;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
final int zzb() {
|
||||
return this.zzc;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
final int zzc() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
final boolean zzf() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzac
|
||||
final Object[] zzg() {
|
||||
return this.zzb;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.Iterator;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public abstract class zzaj implements Iterator {
|
||||
protected zzaj() {
|
||||
}
|
||||
|
||||
@Override // java.util.Iterator
|
||||
@Deprecated
|
||||
public final void remove() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.ListIterator;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public abstract class zzak extends zzaj implements ListIterator {
|
||||
protected zzak() {
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
@Deprecated
|
||||
public final void add(Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
@Deprecated
|
||||
public final void set(Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import android.os.Binder;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class zzb extends Binder implements IInterface {
|
||||
protected zzb(String str) {
|
||||
attachInterface(this, str);
|
||||
}
|
||||
|
||||
@Override // android.os.IInterface
|
||||
public final IBinder asBinder() {
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override // android.os.Binder
|
||||
public final boolean onTransact(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
||||
if (i <= 16777215) {
|
||||
parcel.enforceInterface(getInterfaceDescriptor());
|
||||
} else if (super.onTransact(i, parcel, parcel2, i2)) {
|
||||
return true;
|
||||
}
|
||||
return zza(i, parcel, parcel2, i2);
|
||||
}
|
||||
|
||||
protected boolean zza(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import android.os.BadParcelableException;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzc {
|
||||
public static final /* synthetic */ int zza = 0;
|
||||
private static final ClassLoader zzb = zzc.class.getClassLoader();
|
||||
|
||||
private zzc() {
|
||||
}
|
||||
|
||||
public static Parcelable zza(Parcel parcel, Parcelable.Creator creator) {
|
||||
if (parcel.readInt() == 0) {
|
||||
return null;
|
||||
}
|
||||
return (Parcelable) creator.createFromParcel(parcel);
|
||||
}
|
||||
|
||||
public static void zzb(Parcel parcel) {
|
||||
int iDataAvail = parcel.dataAvail();
|
||||
if (iDataAvail <= 0) {
|
||||
return;
|
||||
}
|
||||
throw new BadParcelableException("Parcel data not fully consumed, unread size: " + iDataAvail);
|
||||
}
|
||||
|
||||
public static void zzc(Parcel parcel, Parcelable parcelable) {
|
||||
if (parcelable == null) {
|
||||
parcel.writeInt(0);
|
||||
} else {
|
||||
parcel.writeInt(1);
|
||||
parcelable.writeToParcel(parcel, 0);
|
||||
}
|
||||
}
|
||||
|
||||
public static void zzd(Parcel parcel, Parcelable parcelable) {
|
||||
if (parcelable == null) {
|
||||
parcel.writeInt(0);
|
||||
} else {
|
||||
parcel.writeInt(1);
|
||||
parcelable.writeToParcel(parcel, 1);
|
||||
}
|
||||
}
|
||||
|
||||
public static void zze(Parcel parcel, IInterface iInterface) {
|
||||
if (iInterface == null) {
|
||||
parcel.writeStrongBinder(null);
|
||||
} else {
|
||||
parcel.writeStrongBinder(iInterface.asBinder());
|
||||
}
|
||||
}
|
||||
|
||||
public static boolean zzf(Parcel parcel) {
|
||||
return parcel.readInt() != 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import androidx.core.view.accessibility.AccessibilityEventCompat;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzd {
|
||||
public static final int zza = AccessibilityEventCompat.TYPE_VIEW_TARGETED_BY_SCROLL;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zze {
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzg implements zze {
|
||||
private zzg() {
|
||||
}
|
||||
|
||||
/* synthetic */ zzg(zzf zzfVar) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzh {
|
||||
private static final zze zza;
|
||||
private static volatile zze zzb;
|
||||
|
||||
static {
|
||||
zzg zzgVar = new zzg(null);
|
||||
zza = zzgVar;
|
||||
zzb = zzgVar;
|
||||
}
|
||||
|
||||
public static zze zza() {
|
||||
return zzb;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class zzi extends Handler {
|
||||
private final Looper zza;
|
||||
|
||||
public zzi() {
|
||||
this.zza = Looper.getMainLooper();
|
||||
}
|
||||
|
||||
public zzi(Looper looper) {
|
||||
super(looper);
|
||||
this.zza = Looper.getMainLooper();
|
||||
}
|
||||
|
||||
public zzi(Looper looper, Handler.Callback callback) {
|
||||
super(looper, callback);
|
||||
this.zza = Looper.getMainLooper();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.NoSuchElementException;
|
||||
import javax.annotation.CheckForNull;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
abstract class zzj implements Iterator {
|
||||
|
||||
@CheckForNull
|
||||
private Object zza;
|
||||
private int zzb = 2;
|
||||
|
||||
protected zzj() {
|
||||
}
|
||||
|
||||
@Override // java.util.Iterator
|
||||
public final Object next() {
|
||||
if (!hasNext()) {
|
||||
throw new NoSuchElementException();
|
||||
}
|
||||
this.zzb = 2;
|
||||
Object obj = this.zza;
|
||||
this.zza = null;
|
||||
return obj;
|
||||
}
|
||||
|
||||
@Override // java.util.Iterator
|
||||
public final void remove() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@CheckForNull
|
||||
protected abstract Object zza();
|
||||
|
||||
@CheckForNull
|
||||
protected final Object zzb() {
|
||||
this.zzb = 3;
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override // java.util.Iterator
|
||||
public final boolean hasNext() {
|
||||
int i = this.zzb;
|
||||
if (i == 4) {
|
||||
throw new IllegalStateException();
|
||||
}
|
||||
int i2 = i - 1;
|
||||
if (i == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (i2 == 0) {
|
||||
return true;
|
||||
}
|
||||
if (i2 != 2) {
|
||||
this.zzb = 4;
|
||||
this.zza = zza();
|
||||
if (this.zzb != 3) {
|
||||
this.zzb = 1;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
abstract class zzk extends zzo {
|
||||
zzk() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import kotlinx.serialization.json.internal.AbstractJsonLexerKt;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzl extends zzk {
|
||||
private final char zza;
|
||||
|
||||
zzl(char c) {
|
||||
this.zza = c;
|
||||
}
|
||||
|
||||
public final String toString() {
|
||||
char[] cArr = new char[6];
|
||||
cArr[0] = AbstractJsonLexerKt.STRING_ESC;
|
||||
cArr[1] = AbstractJsonLexerKt.UNICODE_ESC;
|
||||
cArr[2] = 0;
|
||||
cArr[3] = 0;
|
||||
cArr[4] = 0;
|
||||
cArr[5] = 0;
|
||||
int i = this.zza;
|
||||
for (int i2 = 0; i2 < 4; i2++) {
|
||||
cArr[5 - i2] = "0123456789ABCDEF".charAt(i & 15);
|
||||
i >>= 4;
|
||||
}
|
||||
return "CharMatcher.is('" + String.copyValueOf(cArr) + "')";
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzo
|
||||
public final boolean zza(char c) {
|
||||
return c == this.zza;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
abstract class zzm extends zzk {
|
||||
private final String zza = "CharMatcher.none()";
|
||||
|
||||
zzm(String str) {
|
||||
}
|
||||
|
||||
public final String toString() {
|
||||
return this.zza;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzn extends zzm {
|
||||
static final zzo zza = new zzn();
|
||||
|
||||
private zzn() {
|
||||
super("CharMatcher.none()");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzo
|
||||
public final boolean zza(char c) {
|
||||
throw null;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public abstract class zzo {
|
||||
protected zzo() {
|
||||
}
|
||||
|
||||
public static zzo zzb(char c) {
|
||||
return new zzl(c);
|
||||
}
|
||||
|
||||
public abstract boolean zza(char c);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
class zzp {
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import javax.annotation.CheckForNull;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public final class zzq {
|
||||
static final CharSequence zza(@CheckForNull Object obj, String str) {
|
||||
obj.getClass();
|
||||
return obj instanceof CharSequence ? (CharSequence) obj : obj.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import javax.annotation.CheckForNull;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public final class zzr extends zzp {
|
||||
public static boolean zza(@CheckForNull Object obj, @CheckForNull Object obj2) {
|
||||
if (obj != obj2) {
|
||||
return obj != null && obj.equals(obj2);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public final class zzs {
|
||||
public static int zza(int i, int i2, String str) {
|
||||
String strZza;
|
||||
if (i >= 0 && i < i2) {
|
||||
return i;
|
||||
}
|
||||
if (i < 0) {
|
||||
strZza = zzy.zza("%s (%s) must not be negative", "index", Integer.valueOf(i));
|
||||
} else {
|
||||
if (i2 < 0) {
|
||||
throw new IllegalArgumentException("negative size: " + i2);
|
||||
}
|
||||
strZza = zzy.zza("%s (%s) must be less than size (%s)", "index", Integer.valueOf(i), Integer.valueOf(i2));
|
||||
}
|
||||
throw new IndexOutOfBoundsException(strZza);
|
||||
}
|
||||
|
||||
public static int zzb(int i, int i2, String str) {
|
||||
if (i < 0 || i > i2) {
|
||||
throw new IndexOutOfBoundsException(zzd(i, i2, "index"));
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
public static void zzc(int i, int i2, int i3) {
|
||||
if (i < 0 || i2 < i || i2 > i3) {
|
||||
throw new IndexOutOfBoundsException((i < 0 || i > i3) ? zzd(i, i3, "start index") : (i2 < 0 || i2 > i3) ? zzd(i2, i3, "end index") : zzy.zza("end index (%s) must not be less than start index (%s)", Integer.valueOf(i2), Integer.valueOf(i)));
|
||||
}
|
||||
}
|
||||
|
||||
private static String zzd(int i, int i2, String str) {
|
||||
if (i < 0) {
|
||||
return zzy.zza("%s (%s) must not be negative", str, Integer.valueOf(i));
|
||||
}
|
||||
if (i2 >= 0) {
|
||||
return zzy.zza("%s (%s) must not be greater than size (%s)", str, Integer.valueOf(i), Integer.valueOf(i2));
|
||||
}
|
||||
throw new IllegalArgumentException("negative size: " + i2);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzt extends zzw {
|
||||
final /* synthetic */ zzu zza;
|
||||
|
||||
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
||||
zzt(zzu zzuVar, zzx zzxVar, CharSequence charSequence) {
|
||||
super(zzxVar, charSequence);
|
||||
this.zza = zzuVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzw
|
||||
final int zzc(int i) {
|
||||
return i + 1;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzw
|
||||
final int zzd(int i) {
|
||||
CharSequence charSequence = this.zzb;
|
||||
int length = charSequence.length();
|
||||
zzs.zzb(i, length, "index");
|
||||
while (i < length) {
|
||||
zzu zzuVar = this.zza;
|
||||
if (zzuVar.zza.zza(charSequence.charAt(i))) {
|
||||
return i;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzu {
|
||||
final /* synthetic */ zzo zza;
|
||||
|
||||
zzu(zzo zzoVar) {
|
||||
this.zza = zzoVar;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Iterator;
|
||||
import kotlinx.serialization.json.internal.AbstractJsonLexerKt;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzv implements Iterable {
|
||||
final /* synthetic */ CharSequence zza;
|
||||
final /* synthetic */ zzx zzb;
|
||||
|
||||
zzv(zzx zzxVar, CharSequence charSequence) {
|
||||
this.zzb = zzxVar;
|
||||
this.zza = charSequence;
|
||||
}
|
||||
|
||||
@Override // java.lang.Iterable
|
||||
public final Iterator iterator() {
|
||||
return this.zzb.zzh(this.zza);
|
||||
}
|
||||
|
||||
public final String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(AbstractJsonLexerKt.BEGIN_LIST);
|
||||
Iterator it = iterator();
|
||||
try {
|
||||
if (it.hasNext()) {
|
||||
sb.append(zzq.zza(it.next(), ", "));
|
||||
while (it.hasNext()) {
|
||||
sb.append((CharSequence) ", ");
|
||||
sb.append(zzq.zza(it.next(), ", "));
|
||||
}
|
||||
}
|
||||
sb.append(AbstractJsonLexerKt.END_LIST);
|
||||
return sb.toString();
|
||||
} catch (IOException e) {
|
||||
throw new AssertionError(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import javax.annotation.CheckForNull;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
abstract class zzw extends zzj {
|
||||
final CharSequence zzb;
|
||||
final zzo zzc;
|
||||
final boolean zzd;
|
||||
int zze = 0;
|
||||
int zzf = Integer.MAX_VALUE;
|
||||
|
||||
protected zzw(zzx zzxVar, CharSequence charSequence) {
|
||||
this.zzc = zzxVar.zza;
|
||||
this.zzd = zzxVar.zzb;
|
||||
this.zzb = charSequence;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.common.zzj
|
||||
@CheckForNull
|
||||
protected final /* bridge */ /* synthetic */ Object zza() {
|
||||
int iZzd;
|
||||
int iZzc;
|
||||
int i = this.zze;
|
||||
while (true) {
|
||||
int i2 = this.zze;
|
||||
if (i2 == -1) {
|
||||
zzb();
|
||||
return null;
|
||||
}
|
||||
iZzd = zzd(i2);
|
||||
if (iZzd == -1) {
|
||||
iZzd = this.zzb.length();
|
||||
this.zze = -1;
|
||||
iZzc = -1;
|
||||
} else {
|
||||
iZzc = zzc(iZzd);
|
||||
this.zze = iZzc;
|
||||
}
|
||||
if (iZzc == i) {
|
||||
int i3 = iZzc + 1;
|
||||
this.zze = i3;
|
||||
if (i3 > this.zzb.length()) {
|
||||
this.zze = -1;
|
||||
}
|
||||
} else {
|
||||
if (i < iZzd) {
|
||||
this.zzb.charAt(i);
|
||||
}
|
||||
if (i < iZzd) {
|
||||
this.zzb.charAt(iZzd - 1);
|
||||
}
|
||||
if (!this.zzd || i != iZzd) {
|
||||
break;
|
||||
}
|
||||
i = this.zze;
|
||||
}
|
||||
}
|
||||
int i4 = this.zzf;
|
||||
if (i4 == 1) {
|
||||
iZzd = this.zzb.length();
|
||||
this.zze = -1;
|
||||
if (iZzd > i) {
|
||||
this.zzb.charAt(iZzd - 1);
|
||||
}
|
||||
} else {
|
||||
this.zzf = i4 - 1;
|
||||
}
|
||||
return this.zzb.subSequence(i, iZzd).toString();
|
||||
}
|
||||
|
||||
abstract int zzc(int i);
|
||||
|
||||
abstract int zzd(int i);
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public final class zzx {
|
||||
private final zzo zza;
|
||||
private final boolean zzb;
|
||||
private final zzu zzc;
|
||||
|
||||
private zzx(zzu zzuVar, boolean z, zzo zzoVar, int i) {
|
||||
this.zzc = zzuVar;
|
||||
this.zzb = z;
|
||||
this.zza = zzoVar;
|
||||
}
|
||||
|
||||
public static zzx zzc(zzo zzoVar) {
|
||||
return new zzx(new zzu(zzoVar), false, zzn.zza, Integer.MAX_VALUE);
|
||||
}
|
||||
|
||||
/* JADX INFO: Access modifiers changed from: private */
|
||||
public final Iterator zzh(CharSequence charSequence) {
|
||||
return new zzt(this.zzc, this, charSequence);
|
||||
}
|
||||
|
||||
public final zzx zzb() {
|
||||
return new zzx(this.zzc, true, this.zza, Integer.MAX_VALUE);
|
||||
}
|
||||
|
||||
public final Iterable zzd(CharSequence charSequence) {
|
||||
return new zzv(this, charSequence);
|
||||
}
|
||||
|
||||
public final List zzf(CharSequence charSequence) {
|
||||
charSequence.getClass();
|
||||
Iterator itZzh = zzh(charSequence);
|
||||
ArrayList arrayList = new ArrayList();
|
||||
while (itZzh.hasNext()) {
|
||||
arrayList.add((String) itZzh.next());
|
||||
}
|
||||
return Collections.unmodifiableList(arrayList);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
import javax.annotation.CheckForNull;
|
||||
import kotlinx.serialization.json.internal.AbstractJsonLexerKt;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public final class zzy {
|
||||
public static String zza(@CheckForNull String str, @CheckForNull Object... objArr) {
|
||||
int length;
|
||||
int length2;
|
||||
int iIndexOf;
|
||||
String string;
|
||||
int i = 0;
|
||||
int i2 = 0;
|
||||
while (true) {
|
||||
length = objArr.length;
|
||||
if (i2 >= length) {
|
||||
break;
|
||||
}
|
||||
Object obj = objArr[i2];
|
||||
if (obj == null) {
|
||||
string = "null";
|
||||
} else {
|
||||
try {
|
||||
string = obj.toString();
|
||||
} catch (Exception e) {
|
||||
String str2 = obj.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(obj));
|
||||
Logger.getLogger("com.google.common.base.Strings").logp(Level.WARNING, "com.google.common.base.Strings", "lenientToString", "Exception during lenientFormat for ".concat(str2), (Throwable) e);
|
||||
string = "<" + str2 + " threw " + e.getClass().getName() + ">";
|
||||
}
|
||||
}
|
||||
objArr[i2] = string;
|
||||
i2++;
|
||||
}
|
||||
StringBuilder sb = new StringBuilder(str.length() + (length * 16));
|
||||
int i3 = 0;
|
||||
while (true) {
|
||||
length2 = objArr.length;
|
||||
if (i >= length2 || (iIndexOf = str.indexOf("%s", i3)) == -1) {
|
||||
break;
|
||||
}
|
||||
sb.append((CharSequence) str, i3, iIndexOf);
|
||||
sb.append(objArr[i]);
|
||||
i3 = iIndexOf + 2;
|
||||
i++;
|
||||
}
|
||||
sb.append((CharSequence) str, i3, str.length());
|
||||
if (i < length2) {
|
||||
sb.append(" [");
|
||||
sb.append(objArr[i]);
|
||||
for (int i4 = i + 1; i4 < objArr.length; i4++) {
|
||||
sb.append(", ");
|
||||
sb.append(objArr[i4]);
|
||||
}
|
||||
sb.append(AbstractJsonLexerKt.END_LIST);
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.NoSuchElementException;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
abstract class zzz extends zzak {
|
||||
private final int zza;
|
||||
private int zzb;
|
||||
|
||||
protected zzz(int i, int i2) {
|
||||
zzs.zzb(i2, i, "index");
|
||||
this.zza = i;
|
||||
this.zzb = i2;
|
||||
}
|
||||
|
||||
@Override // java.util.Iterator, java.util.ListIterator
|
||||
public final boolean hasNext() {
|
||||
return this.zzb < this.zza;
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
public final boolean hasPrevious() {
|
||||
return this.zzb > 0;
|
||||
}
|
||||
|
||||
@Override // java.util.Iterator, java.util.ListIterator
|
||||
public final Object next() {
|
||||
if (!hasNext()) {
|
||||
throw new NoSuchElementException();
|
||||
}
|
||||
int i = this.zzb;
|
||||
this.zzb = i + 1;
|
||||
return zza(i);
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
public final int nextIndex() {
|
||||
return this.zzb;
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
public final Object previous() {
|
||||
if (!hasPrevious()) {
|
||||
throw new NoSuchElementException();
|
||||
}
|
||||
int i = this.zzb - 1;
|
||||
this.zzb = i;
|
||||
return zza(i);
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
public final int previousIndex() {
|
||||
return this.zzb - 1;
|
||||
}
|
||||
|
||||
protected abstract Object zza(int i);
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class zza implements IInterface {
|
||||
private final IBinder zza;
|
||||
private final String zzb;
|
||||
|
||||
protected zza(IBinder iBinder, String str) {
|
||||
this.zza = iBinder;
|
||||
this.zzb = str;
|
||||
}
|
||||
|
||||
@Override // android.os.IInterface
|
||||
public final IBinder asBinder() {
|
||||
return this.zza;
|
||||
}
|
||||
|
||||
protected final Parcel zzJ(int i, Parcel parcel) throws RemoteException {
|
||||
Parcel parcelObtain = Parcel.obtain();
|
||||
try {
|
||||
try {
|
||||
this.zza.transact(i, parcel, parcelObtain, 0);
|
||||
parcelObtain.readException();
|
||||
return parcelObtain;
|
||||
} catch (RuntimeException e) {
|
||||
parcelObtain.recycle();
|
||||
throw e;
|
||||
}
|
||||
} finally {
|
||||
parcel.recycle();
|
||||
}
|
||||
}
|
||||
|
||||
protected final Parcel zza() {
|
||||
Parcel parcelObtain = Parcel.obtain();
|
||||
parcelObtain.writeInterfaceToken(this.zzb);
|
||||
return parcelObtain;
|
||||
}
|
||||
|
||||
protected final void zzc(int i, Parcel parcel) throws RemoteException {
|
||||
Parcel parcelObtain = Parcel.obtain();
|
||||
try {
|
||||
this.zza.transact(i, parcel, parcelObtain, 0);
|
||||
parcelObtain.readException();
|
||||
} finally {
|
||||
parcel.recycle();
|
||||
parcelObtain.recycle();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzaa extends zzb implements zzab {
|
||||
public static zzab zzb(IBinder iBinder) {
|
||||
if (iBinder == null) {
|
||||
return null;
|
||||
}
|
||||
IInterface iInterfaceQueryLocalInterface = iBinder.queryLocalInterface("com.google.android.gms.maps.model.internal.IIndoorLevelDelegate");
|
||||
return iInterfaceQueryLocalInterface instanceof zzab ? (zzab) iInterfaceQueryLocalInterface : new zzz(iBinder);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zzab extends IInterface {
|
||||
int zzd() throws RemoteException;
|
||||
|
||||
String zze() throws RemoteException;
|
||||
|
||||
String zzf() throws RemoteException;
|
||||
|
||||
void zzg() throws RemoteException;
|
||||
|
||||
boolean zzh(zzab zzabVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzac extends zza implements zzae {
|
||||
zzac(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.model.internal.IMapCapabilitiesDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzae
|
||||
public final boolean zzd() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(1, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzae
|
||||
public final boolean zze() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(2, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzad extends zzb implements zzae {
|
||||
public static zzae zzb(IBinder iBinder) {
|
||||
if (iBinder == null) {
|
||||
return null;
|
||||
}
|
||||
IInterface iInterfaceQueryLocalInterface = iBinder.queryLocalInterface("com.google.android.gms.maps.model.internal.IMapCapabilitiesDelegate");
|
||||
return iInterfaceQueryLocalInterface instanceof zzae ? (zzae) iInterfaceQueryLocalInterface : new zzac(iBinder);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zzae extends IInterface {
|
||||
boolean zzd() throws RemoteException;
|
||||
|
||||
boolean zze() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,255 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzaf extends zza implements zzah {
|
||||
zzaf(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.model.internal.IMarkerDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzA(String str) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeString(str);
|
||||
zzc(5, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzB(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(14, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzC(float f) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
zzc(27, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzD() throws RemoteException {
|
||||
zzc(11, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final boolean zzE(zzah zzahVar) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zzg(parcelZza, zzahVar);
|
||||
Parcel parcelZzJ = zzJ(16, parcelZza);
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final boolean zzF() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(10, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final boolean zzG() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(21, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final boolean zzH() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(13, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final boolean zzI() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(15, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final float zzd() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(26, zza());
|
||||
float f = parcelZzJ.readFloat();
|
||||
parcelZzJ.recycle();
|
||||
return f;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final float zze() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(23, zza());
|
||||
float f = parcelZzJ.readFloat();
|
||||
parcelZzJ.recycle();
|
||||
return f;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final float zzf() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(28, zza());
|
||||
float f = parcelZzJ.readFloat();
|
||||
parcelZzJ.recycle();
|
||||
return f;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final int zzg() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(17, zza());
|
||||
int i = parcelZzJ.readInt();
|
||||
parcelZzJ.recycle();
|
||||
return i;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final IObjectWrapper zzh() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(34, zza());
|
||||
IObjectWrapper iObjectWrapperAsInterface = IObjectWrapper.Stub.asInterface(parcelZzJ.readStrongBinder());
|
||||
parcelZzJ.recycle();
|
||||
return iObjectWrapperAsInterface;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final IObjectWrapper zzi() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(30, zza());
|
||||
IObjectWrapper iObjectWrapperAsInterface = IObjectWrapper.Stub.asInterface(parcelZzJ.readStrongBinder());
|
||||
parcelZzJ.recycle();
|
||||
return iObjectWrapperAsInterface;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final LatLng zzj() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(4, zza());
|
||||
LatLng latLng = (LatLng) zzc.zza(parcelZzJ, LatLng.CREATOR);
|
||||
parcelZzJ.recycle();
|
||||
return latLng;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final String zzk() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(2, zza());
|
||||
String string = parcelZzJ.readString();
|
||||
parcelZzJ.recycle();
|
||||
return string;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final String zzl() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(8, zza());
|
||||
String string = parcelZzJ.readString();
|
||||
parcelZzJ.recycle();
|
||||
return string;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final String zzm() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(6, zza());
|
||||
String string = parcelZzJ.readString();
|
||||
parcelZzJ.recycle();
|
||||
return string;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzn() throws RemoteException {
|
||||
zzc(12, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzo() throws RemoteException {
|
||||
zzc(1, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzp(float f) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
zzc(25, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzq(float f, float f2) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
parcelZza.writeFloat(f2);
|
||||
zzc(19, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzr(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(9, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzs(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(20, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzt(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zzg(parcelZza, iObjectWrapper);
|
||||
zzc(18, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzu(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zzg(parcelZza, iObjectWrapper);
|
||||
zzc(33, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzv(float f, float f2) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
parcelZza.writeFloat(f2);
|
||||
zzc(24, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzw(LatLng latLng) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zze(parcelZza, latLng);
|
||||
zzc(3, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzx(float f) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
zzc(22, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzy(String str) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeString(str);
|
||||
zzc(7, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzah
|
||||
public final void zzz(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zzg(parcelZza, iObjectWrapper);
|
||||
zzc(29, parcelZza);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzag extends zzb implements zzah {
|
||||
public static zzah zzb(IBinder iBinder) {
|
||||
if (iBinder == null) {
|
||||
return null;
|
||||
}
|
||||
IInterface iInterfaceQueryLocalInterface = iBinder.queryLocalInterface("com.google.android.gms.maps.model.internal.IMarkerDelegate");
|
||||
return iInterfaceQueryLocalInterface instanceof zzah ? (zzah) iInterfaceQueryLocalInterface : new zzaf(iBinder);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zzah extends IInterface {
|
||||
void zzA(@Nullable String str) throws RemoteException;
|
||||
|
||||
void zzB(boolean z) throws RemoteException;
|
||||
|
||||
void zzC(float f) throws RemoteException;
|
||||
|
||||
void zzD() throws RemoteException;
|
||||
|
||||
boolean zzE(zzah zzahVar) throws RemoteException;
|
||||
|
||||
boolean zzF() throws RemoteException;
|
||||
|
||||
boolean zzG() throws RemoteException;
|
||||
|
||||
boolean zzH() throws RemoteException;
|
||||
|
||||
boolean zzI() throws RemoteException;
|
||||
|
||||
float zzd() throws RemoteException;
|
||||
|
||||
float zze() throws RemoteException;
|
||||
|
||||
float zzf() throws RemoteException;
|
||||
|
||||
int zzg() throws RemoteException;
|
||||
|
||||
IObjectWrapper zzh() throws RemoteException;
|
||||
|
||||
IObjectWrapper zzi() throws RemoteException;
|
||||
|
||||
LatLng zzj() throws RemoteException;
|
||||
|
||||
String zzk() throws RemoteException;
|
||||
|
||||
String zzl() throws RemoteException;
|
||||
|
||||
String zzm() throws RemoteException;
|
||||
|
||||
void zzn() throws RemoteException;
|
||||
|
||||
void zzo() throws RemoteException;
|
||||
|
||||
void zzp(float f) throws RemoteException;
|
||||
|
||||
void zzq(float f, float f2) throws RemoteException;
|
||||
|
||||
void zzr(boolean z) throws RemoteException;
|
||||
|
||||
void zzs(boolean z) throws RemoteException;
|
||||
|
||||
void zzt(@Nullable IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
|
||||
void zzu(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
|
||||
void zzv(float f, float f2) throws RemoteException;
|
||||
|
||||
void zzw(LatLng latLng) throws RemoteException;
|
||||
|
||||
void zzx(float f) throws RemoteException;
|
||||
|
||||
void zzy(@Nullable String str) throws RemoteException;
|
||||
|
||||
void zzz(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzai extends zzb implements zzaj {
|
||||
public zzai() {
|
||||
super("com.google.android.gms.maps.model.internal.IOnFeatureClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
protected final boolean zza(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
||||
zzm zzmVar;
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
IBinder strongBinder = parcel.readStrongBinder();
|
||||
if (strongBinder == null) {
|
||||
zzmVar = null;
|
||||
} else {
|
||||
IInterface iInterfaceQueryLocalInterface = strongBinder.queryLocalInterface("com.google.android.gms.maps.model.internal.IFeatureClickEventDelegate");
|
||||
zzmVar = iInterfaceQueryLocalInterface instanceof zzm ? (zzm) iInterfaceQueryLocalInterface : new zzm(strongBinder);
|
||||
}
|
||||
zzc.zzd(parcel);
|
||||
zzb(zzmVar);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zzaj extends IInterface {
|
||||
void zzb(zzm zzmVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,232 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
import com.google.android.gms.maps.model.PatternItem;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzak extends zza implements zzam {
|
||||
zzak(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.model.internal.IPolygonDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzA(float f) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
zzc(13, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final boolean zzB(zzam zzamVar) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zzg(parcelZza, zzamVar);
|
||||
Parcel parcelZzJ = zzJ(19, parcelZza);
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final boolean zzC() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(22, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final boolean zzD() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(18, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final boolean zzE() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(16, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final float zzd() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(8, zza());
|
||||
float f = parcelZzJ.readFloat();
|
||||
parcelZzJ.recycle();
|
||||
return f;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final float zze() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(14, zza());
|
||||
float f = parcelZzJ.readFloat();
|
||||
parcelZzJ.recycle();
|
||||
return f;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final int zzf() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(12, zza());
|
||||
int i = parcelZzJ.readInt();
|
||||
parcelZzJ.recycle();
|
||||
return i;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final int zzg() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(10, zza());
|
||||
int i = parcelZzJ.readInt();
|
||||
parcelZzJ.recycle();
|
||||
return i;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final int zzh() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(24, zza());
|
||||
int i = parcelZzJ.readInt();
|
||||
parcelZzJ.recycle();
|
||||
return i;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final int zzi() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(20, zza());
|
||||
int i = parcelZzJ.readInt();
|
||||
parcelZzJ.recycle();
|
||||
return i;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final IObjectWrapper zzj() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(28, zza());
|
||||
IObjectWrapper iObjectWrapperAsInterface = IObjectWrapper.Stub.asInterface(parcelZzJ.readStrongBinder());
|
||||
parcelZzJ.recycle();
|
||||
return iObjectWrapperAsInterface;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final String zzk() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(2, zza());
|
||||
String string = parcelZzJ.readString();
|
||||
parcelZzJ.recycle();
|
||||
return string;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final List zzl() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(6, zza());
|
||||
ArrayList arrayListZzb = zzc.zzb(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return arrayListZzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final List zzm() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(4, zza());
|
||||
ArrayList arrayListCreateTypedArrayList = parcelZzJ.createTypedArrayList(LatLng.CREATOR);
|
||||
parcelZzJ.recycle();
|
||||
return arrayListCreateTypedArrayList;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final List zzn() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(26, zza());
|
||||
ArrayList arrayListCreateTypedArrayList = parcelZzJ.createTypedArrayList(PatternItem.CREATOR);
|
||||
parcelZzJ.recycle();
|
||||
return arrayListCreateTypedArrayList;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzo() throws RemoteException {
|
||||
zzc(1, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzp(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(21, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzq(int i) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeInt(i);
|
||||
zzc(11, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzr(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(17, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzs(List list) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeList(list);
|
||||
zzc(5, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzt(List list) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeTypedList(list);
|
||||
zzc(3, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzu(int i) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeInt(i);
|
||||
zzc(9, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzv(int i) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeInt(i);
|
||||
zzc(23, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzw(List list) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeTypedList(list);
|
||||
zzc(25, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzx(float f) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
zzc(7, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzy(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zzg(parcelZza, iObjectWrapper);
|
||||
zzc(27, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzam
|
||||
public final void zzz(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(15, parcelZza);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzal extends zzb implements zzam {
|
||||
public static zzam zzb(IBinder iBinder) {
|
||||
if (iBinder == null) {
|
||||
return null;
|
||||
}
|
||||
IInterface iInterfaceQueryLocalInterface = iBinder.queryLocalInterface("com.google.android.gms.maps.model.internal.IPolygonDelegate");
|
||||
return iInterfaceQueryLocalInterface instanceof zzam ? (zzam) iInterfaceQueryLocalInterface : new zzak(iBinder);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import java.util.List;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zzam extends IInterface {
|
||||
void zzA(float f) throws RemoteException;
|
||||
|
||||
boolean zzB(@Nullable zzam zzamVar) throws RemoteException;
|
||||
|
||||
boolean zzC() throws RemoteException;
|
||||
|
||||
boolean zzD() throws RemoteException;
|
||||
|
||||
boolean zzE() throws RemoteException;
|
||||
|
||||
float zzd() throws RemoteException;
|
||||
|
||||
float zze() throws RemoteException;
|
||||
|
||||
int zzf() throws RemoteException;
|
||||
|
||||
int zzg() throws RemoteException;
|
||||
|
||||
int zzh() throws RemoteException;
|
||||
|
||||
int zzi() throws RemoteException;
|
||||
|
||||
IObjectWrapper zzj() throws RemoteException;
|
||||
|
||||
String zzk() throws RemoteException;
|
||||
|
||||
List zzl() throws RemoteException;
|
||||
|
||||
List zzm() throws RemoteException;
|
||||
|
||||
List zzn() throws RemoteException;
|
||||
|
||||
void zzo() throws RemoteException;
|
||||
|
||||
void zzp(boolean z) throws RemoteException;
|
||||
|
||||
void zzq(int i) throws RemoteException;
|
||||
|
||||
void zzr(boolean z) throws RemoteException;
|
||||
|
||||
void zzs(List list) throws RemoteException;
|
||||
|
||||
void zzt(List list) throws RemoteException;
|
||||
|
||||
void zzu(int i) throws RemoteException;
|
||||
|
||||
void zzv(int i) throws RemoteException;
|
||||
|
||||
void zzw(@Nullable List list) throws RemoteException;
|
||||
|
||||
void zzx(float f) throws RemoteException;
|
||||
|
||||
void zzy(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
|
||||
void zzz(boolean z) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,249 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.model.Cap;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
import com.google.android.gms.maps.model.PatternItem;
|
||||
import com.google.android.gms.maps.model.StyleSpan;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzan extends zza implements zzap {
|
||||
zzan(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.model.internal.IPolylineDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzA(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(11, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzB(float f) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
zzc(5, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzC(float f) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
zzc(9, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final boolean zzD(zzap zzapVar) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zzg(parcelZza, zzapVar);
|
||||
Parcel parcelZzJ = zzJ(15, parcelZza);
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final boolean zzE() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(18, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final boolean zzF() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(14, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final boolean zzG() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(12, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final float zzd() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(6, zza());
|
||||
float f = parcelZzJ.readFloat();
|
||||
parcelZzJ.recycle();
|
||||
return f;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final float zze() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(10, zza());
|
||||
float f = parcelZzJ.readFloat();
|
||||
parcelZzJ.recycle();
|
||||
return f;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final int zzf() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(8, zza());
|
||||
int i = parcelZzJ.readInt();
|
||||
parcelZzJ.recycle();
|
||||
return i;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final int zzg() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(24, zza());
|
||||
int i = parcelZzJ.readInt();
|
||||
parcelZzJ.recycle();
|
||||
return i;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final int zzh() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(16, zza());
|
||||
int i = parcelZzJ.readInt();
|
||||
parcelZzJ.recycle();
|
||||
return i;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final IObjectWrapper zzi() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(28, zza());
|
||||
IObjectWrapper iObjectWrapperAsInterface = IObjectWrapper.Stub.asInterface(parcelZzJ.readStrongBinder());
|
||||
parcelZzJ.recycle();
|
||||
return iObjectWrapperAsInterface;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final Cap zzj() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(22, zza());
|
||||
Cap cap = (Cap) zzc.zza(parcelZzJ, Cap.CREATOR);
|
||||
parcelZzJ.recycle();
|
||||
return cap;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final Cap zzk() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(20, zza());
|
||||
Cap cap = (Cap) zzc.zza(parcelZzJ, Cap.CREATOR);
|
||||
parcelZzJ.recycle();
|
||||
return cap;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final String zzl() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(2, zza());
|
||||
String string = parcelZzJ.readString();
|
||||
parcelZzJ.recycle();
|
||||
return string;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final List zzm() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(26, zza());
|
||||
ArrayList arrayListCreateTypedArrayList = parcelZzJ.createTypedArrayList(PatternItem.CREATOR);
|
||||
parcelZzJ.recycle();
|
||||
return arrayListCreateTypedArrayList;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final List zzn() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(4, zza());
|
||||
ArrayList arrayListCreateTypedArrayList = parcelZzJ.createTypedArrayList(LatLng.CREATOR);
|
||||
parcelZzJ.recycle();
|
||||
return arrayListCreateTypedArrayList;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final List zzo() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(30, zza());
|
||||
ArrayList arrayListCreateTypedArrayList = parcelZzJ.createTypedArrayList(StyleSpan.CREATOR);
|
||||
parcelZzJ.recycle();
|
||||
return arrayListCreateTypedArrayList;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzp() throws RemoteException {
|
||||
zzc(1, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzq(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(17, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzr(int i) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeInt(i);
|
||||
zzc(7, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzs(Cap cap) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zze(parcelZza, cap);
|
||||
zzc(21, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzt(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(13, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzu(int i) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeInt(i);
|
||||
zzc(23, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzv(List list) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeTypedList(list);
|
||||
zzc(25, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzw(List list) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeTypedList(list);
|
||||
zzc(3, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzx(List list) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeTypedList(list);
|
||||
zzc(29, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzy(Cap cap) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zze(parcelZza, cap);
|
||||
zzc(19, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzap
|
||||
public final void zzz(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zzg(parcelZza, iObjectWrapper);
|
||||
zzc(27, parcelZza);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzao extends zzb implements zzap {
|
||||
public static zzap zzb(IBinder iBinder) {
|
||||
if (iBinder == null) {
|
||||
return null;
|
||||
}
|
||||
IInterface iInterfaceQueryLocalInterface = iBinder.queryLocalInterface("com.google.android.gms.maps.model.internal.IPolylineDelegate");
|
||||
return iInterfaceQueryLocalInterface instanceof zzap ? (zzap) iInterfaceQueryLocalInterface : new zzan(iBinder);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.model.Cap;
|
||||
import java.util.List;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zzap extends IInterface {
|
||||
void zzA(boolean z) throws RemoteException;
|
||||
|
||||
void zzB(float f) throws RemoteException;
|
||||
|
||||
void zzC(float f) throws RemoteException;
|
||||
|
||||
boolean zzD(@Nullable zzap zzapVar) throws RemoteException;
|
||||
|
||||
boolean zzE() throws RemoteException;
|
||||
|
||||
boolean zzF() throws RemoteException;
|
||||
|
||||
boolean zzG() throws RemoteException;
|
||||
|
||||
float zzd() throws RemoteException;
|
||||
|
||||
float zze() throws RemoteException;
|
||||
|
||||
int zzf() throws RemoteException;
|
||||
|
||||
int zzg() throws RemoteException;
|
||||
|
||||
int zzh() throws RemoteException;
|
||||
|
||||
IObjectWrapper zzi() throws RemoteException;
|
||||
|
||||
Cap zzj() throws RemoteException;
|
||||
|
||||
Cap zzk() throws RemoteException;
|
||||
|
||||
String zzl() throws RemoteException;
|
||||
|
||||
List zzm() throws RemoteException;
|
||||
|
||||
List zzn() throws RemoteException;
|
||||
|
||||
List zzo() throws RemoteException;
|
||||
|
||||
void zzp() throws RemoteException;
|
||||
|
||||
void zzq(boolean z) throws RemoteException;
|
||||
|
||||
void zzr(int i) throws RemoteException;
|
||||
|
||||
void zzs(Cap cap) throws RemoteException;
|
||||
|
||||
void zzt(boolean z) throws RemoteException;
|
||||
|
||||
void zzu(int i) throws RemoteException;
|
||||
|
||||
void zzv(@Nullable List list) throws RemoteException;
|
||||
|
||||
void zzw(List list) throws RemoteException;
|
||||
|
||||
void zzx(List list) throws RemoteException;
|
||||
|
||||
void zzy(Cap cap) throws RemoteException;
|
||||
|
||||
void zzz(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.FeatureStyle;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzaq extends zzb implements zzar {
|
||||
public zzaq() {
|
||||
super("com.google.android.gms.maps.model.internal.IStyleFactory");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
protected final boolean zza(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
||||
zzp zznVar;
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
IBinder strongBinder = parcel.readStrongBinder();
|
||||
if (strongBinder == null) {
|
||||
zznVar = null;
|
||||
} else {
|
||||
IInterface iInterfaceQueryLocalInterface = strongBinder.queryLocalInterface("com.google.android.gms.maps.model.internal.IFeatureDelegate");
|
||||
zznVar = iInterfaceQueryLocalInterface instanceof zzp ? (zzp) iInterfaceQueryLocalInterface : new zzn(strongBinder);
|
||||
}
|
||||
zzc.zzd(parcel);
|
||||
FeatureStyle featureStyleZzb = zzb(zznVar);
|
||||
parcel2.writeNoException();
|
||||
zzc.zzf(parcel2, featureStyleZzb);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.FeatureStyle;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zzar extends IInterface {
|
||||
@Nullable
|
||||
FeatureStyle zzb(zzp zzpVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzas extends zza implements zzau {
|
||||
zzas(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.model.internal.ITileOverlayDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final float zzd() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(13, zza());
|
||||
float f = parcelZzJ.readFloat();
|
||||
parcelZzJ.recycle();
|
||||
return f;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final float zze() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(5, zza());
|
||||
float f = parcelZzJ.readFloat();
|
||||
parcelZzJ.recycle();
|
||||
return f;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final int zzf() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(9, zza());
|
||||
int i = parcelZzJ.readInt();
|
||||
parcelZzJ.recycle();
|
||||
return i;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final String zzg() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(3, zza());
|
||||
String string = parcelZzJ.readString();
|
||||
parcelZzJ.recycle();
|
||||
return string;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final void zzh() throws RemoteException {
|
||||
zzc(2, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final void zzi() throws RemoteException {
|
||||
zzc(1, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final void zzj(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(10, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final void zzk(float f) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
zzc(12, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final void zzl(boolean z) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
int i = zzc.zza;
|
||||
parcelZza.writeInt(z ? 1 : 0);
|
||||
zzc(6, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final void zzm(float f) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeFloat(f);
|
||||
zzc(4, parcelZza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final boolean zzn(zzau zzauVar) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
zzc.zzg(parcelZza, zzauVar);
|
||||
Parcel parcelZzJ = zzJ(8, parcelZza);
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final boolean zzo() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(11, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzau
|
||||
public final boolean zzp() throws RemoteException {
|
||||
Parcel parcelZzJ = zzJ(7, zza());
|
||||
boolean zZzh = zzc.zzh(parcelZzJ);
|
||||
parcelZzJ.recycle();
|
||||
return zZzh;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzat extends zzb implements zzau {
|
||||
public static zzau zzb(IBinder iBinder) {
|
||||
if (iBinder == null) {
|
||||
return null;
|
||||
}
|
||||
IInterface iInterfaceQueryLocalInterface = iBinder.queryLocalInterface("com.google.android.gms.maps.model.internal.ITileOverlayDelegate");
|
||||
return iInterfaceQueryLocalInterface instanceof zzau ? (zzau) iInterfaceQueryLocalInterface : new zzas(iBinder);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zzau extends IInterface {
|
||||
float zzd() throws RemoteException;
|
||||
|
||||
float zze() throws RemoteException;
|
||||
|
||||
int zzf() throws RemoteException;
|
||||
|
||||
String zzg() throws RemoteException;
|
||||
|
||||
void zzh() throws RemoteException;
|
||||
|
||||
void zzi() throws RemoteException;
|
||||
|
||||
void zzj(boolean z) throws RemoteException;
|
||||
|
||||
void zzk(float f) throws RemoteException;
|
||||
|
||||
void zzl(boolean z) throws RemoteException;
|
||||
|
||||
void zzm(float f) throws RemoteException;
|
||||
|
||||
boolean zzn(@Nullable zzau zzauVar) throws RemoteException;
|
||||
|
||||
boolean zzo() throws RemoteException;
|
||||
|
||||
boolean zzp() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.Tile;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzav extends zza implements zzax {
|
||||
zzav(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.model.internal.ITileProviderDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzax
|
||||
public final Tile zzb(int i, int i2, int i3) throws RemoteException {
|
||||
Parcel parcelZza = zza();
|
||||
parcelZza.writeInt(i);
|
||||
parcelZza.writeInt(i2);
|
||||
parcelZza.writeInt(i3);
|
||||
Parcel parcelZzJ = zzJ(1, parcelZza);
|
||||
Tile tile = (Tile) zzc.zza(parcelZzJ, Tile.CREATOR);
|
||||
parcelZzJ.recycle();
|
||||
return tile;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.Tile;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzaw extends zzb implements zzax {
|
||||
public zzaw() {
|
||||
super("com.google.android.gms.maps.model.internal.ITileProviderDelegate");
|
||||
}
|
||||
|
||||
public static zzax zzc(IBinder iBinder) {
|
||||
if (iBinder == null) {
|
||||
return null;
|
||||
}
|
||||
IInterface iInterfaceQueryLocalInterface = iBinder.queryLocalInterface("com.google.android.gms.maps.model.internal.ITileProviderDelegate");
|
||||
return iInterfaceQueryLocalInterface instanceof zzax ? (zzax) iInterfaceQueryLocalInterface : new zzav(iBinder);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
protected final boolean zza(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
int i3 = parcel.readInt();
|
||||
int i4 = parcel.readInt();
|
||||
int i5 = parcel.readInt();
|
||||
zzc.zzd(parcel);
|
||||
Tile tileZzb = zzb(i3, i4, i5);
|
||||
parcel2.writeNoException();
|
||||
zzc.zzf(parcel2, tileZzb);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.Tile;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface zzax extends IInterface {
|
||||
@Nullable
|
||||
Tile zzb(int i, int i2, int i3) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
class zzay {
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import javax.annotation.CheckForNull;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzaz extends zzay {
|
||||
public static boolean zza(@CheckForNull Object obj, @CheckForNull Object obj2) {
|
||||
if (obj != obj2) {
|
||||
return obj != null && obj.equals(obj2);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import android.os.Binder;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class zzb extends Binder implements IInterface {
|
||||
protected zzb(String str) {
|
||||
attachInterface(this, str);
|
||||
}
|
||||
|
||||
@Override // android.os.IInterface
|
||||
public final IBinder asBinder() {
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override // android.os.Binder
|
||||
public final boolean onTransact(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
||||
if (i <= 16777215) {
|
||||
parcel.enforceInterface(getInterfaceDescriptor());
|
||||
} else if (super.onTransact(i, parcel, parcel2, i2)) {
|
||||
return true;
|
||||
}
|
||||
return zza(i, parcel, parcel2, i2);
|
||||
}
|
||||
|
||||
protected boolean zza(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
||||
throw null;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzba {
|
||||
public static int zza(int i, int i2, String str) {
|
||||
String strZza;
|
||||
if (i >= 0 && i < i2) {
|
||||
return i;
|
||||
}
|
||||
if (i < 0) {
|
||||
strZza = zzbb.zza("%s (%s) must not be negative", "index", Integer.valueOf(i));
|
||||
} else {
|
||||
if (i2 < 0) {
|
||||
throw new IllegalArgumentException("negative size: " + i2);
|
||||
}
|
||||
strZza = zzbb.zza("%s (%s) must be less than size (%s)", "index", Integer.valueOf(i), Integer.valueOf(i2));
|
||||
}
|
||||
throw new IndexOutOfBoundsException(strZza);
|
||||
}
|
||||
|
||||
public static int zzb(int i, int i2, String str) {
|
||||
if (i < 0 || i > i2) {
|
||||
throw new IndexOutOfBoundsException(zzd(i, i2, "index"));
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
public static void zzc(int i, int i2, int i3) {
|
||||
if (i < 0 || i2 < i || i2 > i3) {
|
||||
throw new IndexOutOfBoundsException((i < 0 || i > i3) ? zzd(i, i3, "start index") : (i2 < 0 || i2 > i3) ? zzd(i2, i3, "end index") : zzbb.zza("end index (%s) must not be less than start index (%s)", Integer.valueOf(i2), Integer.valueOf(i)));
|
||||
}
|
||||
}
|
||||
|
||||
private static String zzd(int i, int i2, String str) {
|
||||
if (i < 0) {
|
||||
return zzbb.zza("%s (%s) must not be negative", str, Integer.valueOf(i));
|
||||
}
|
||||
if (i2 >= 0) {
|
||||
return zzbb.zza("%s (%s) must not be greater than size (%s)", str, Integer.valueOf(i), Integer.valueOf(i2));
|
||||
}
|
||||
throw new IllegalArgumentException("negative size: " + i2);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
import javax.annotation.CheckForNull;
|
||||
import kotlinx.serialization.json.internal.AbstractJsonLexerKt;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzbb {
|
||||
public static String zza(@CheckForNull String str, @CheckForNull Object... objArr) {
|
||||
int length;
|
||||
int length2;
|
||||
int iIndexOf;
|
||||
String string;
|
||||
int i = 0;
|
||||
int i2 = 0;
|
||||
while (true) {
|
||||
length = objArr.length;
|
||||
if (i2 >= length) {
|
||||
break;
|
||||
}
|
||||
Object obj = objArr[i2];
|
||||
if (obj == null) {
|
||||
string = "null";
|
||||
} else {
|
||||
try {
|
||||
string = obj.toString();
|
||||
} catch (Exception e) {
|
||||
String str2 = obj.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(obj));
|
||||
Logger.getLogger("com.google.common.base.Strings").logp(Level.WARNING, "com.google.common.base.Strings", "lenientToString", "Exception during lenientFormat for ".concat(str2), (Throwable) e);
|
||||
string = "<" + str2 + " threw " + e.getClass().getName() + ">";
|
||||
}
|
||||
}
|
||||
objArr[i2] = string;
|
||||
i2++;
|
||||
}
|
||||
StringBuilder sb = new StringBuilder(str.length() + (length * 16));
|
||||
int i3 = 0;
|
||||
while (true) {
|
||||
length2 = objArr.length;
|
||||
if (i >= length2 || (iIndexOf = str.indexOf("%s", i3)) == -1) {
|
||||
break;
|
||||
}
|
||||
sb.append((CharSequence) str, i3, iIndexOf);
|
||||
sb.append(objArr[i]);
|
||||
i3 = iIndexOf + 2;
|
||||
i++;
|
||||
}
|
||||
sb.append((CharSequence) str, i3, str.length());
|
||||
if (i < length2) {
|
||||
sb.append(" [");
|
||||
sb.append(objArr[i]);
|
||||
for (int i4 = i + 1; i4 < objArr.length; i4++) {
|
||||
sb.append(", ");
|
||||
sb.append(objArr[i4]);
|
||||
}
|
||||
sb.append(AbstractJsonLexerKt.END_LIST);
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import java.util.NoSuchElementException;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
abstract class zzbc extends zzby {
|
||||
private final int zza;
|
||||
private int zzb;
|
||||
|
||||
protected zzbc(int i, int i2) {
|
||||
zzba.zzb(i2, i, "index");
|
||||
this.zza = i;
|
||||
this.zzb = i2;
|
||||
}
|
||||
|
||||
@Override // java.util.Iterator, java.util.ListIterator
|
||||
public final boolean hasNext() {
|
||||
return this.zzb < this.zza;
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
public final boolean hasPrevious() {
|
||||
return this.zzb > 0;
|
||||
}
|
||||
|
||||
@Override // java.util.Iterator, java.util.ListIterator
|
||||
public final Object next() {
|
||||
if (!hasNext()) {
|
||||
throw new NoSuchElementException();
|
||||
}
|
||||
int i = this.zzb;
|
||||
this.zzb = i + 1;
|
||||
return zza(i);
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
public final int nextIndex() {
|
||||
return this.zzb;
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
public final Object previous() {
|
||||
if (!hasPrevious()) {
|
||||
throw new NoSuchElementException();
|
||||
}
|
||||
int i = this.zzb - 1;
|
||||
this.zzb = i;
|
||||
return zza(i);
|
||||
}
|
||||
|
||||
@Override // java.util.ListIterator
|
||||
public final int previousIndex() {
|
||||
return this.zzb - 1;
|
||||
}
|
||||
|
||||
protected abstract Object zza(int i);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzbd {
|
||||
static void zza(Object obj, Object obj2) {
|
||||
if (obj == null) {
|
||||
throw new NullPointerException("null key in entry: null=".concat(String.valueOf(String.valueOf(obj2))));
|
||||
}
|
||||
if (obj2 != null) {
|
||||
return;
|
||||
}
|
||||
throw new NullPointerException("null value in entry: " + obj.toString() + "=null");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzbe {
|
||||
static int zza(int i) {
|
||||
return (int) (((long) Integer.rotateLeft((int) (((long) i) * (-862048943)), 15)) * 461845907);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,109 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.AbstractCollection;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Spliterator;
|
||||
import java.util.Spliterators;
|
||||
import javax.annotation.CheckForNull;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzbf extends AbstractCollection implements Serializable {
|
||||
private static final Object[] zza = new Object[0];
|
||||
|
||||
zzbf() {
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean add(Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean addAll(Collection collection) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final void clear() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
public abstract boolean contains(@CheckForNull Object obj);
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean remove(@CheckForNull Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean removeAll(Collection collection) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
@Deprecated
|
||||
public final boolean retainAll(Collection collection) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.Collection, java.lang.Iterable
|
||||
public final Spliterator spliterator() {
|
||||
return Spliterators.spliterator(this, 1296);
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
public final Object[] toArray() {
|
||||
return toArray(zza);
|
||||
}
|
||||
|
||||
int zza(Object[] objArr, int i) {
|
||||
throw null;
|
||||
}
|
||||
|
||||
int zzb() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
int zzc() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection, java.lang.Iterable
|
||||
/* JADX INFO: renamed from: zzd, reason: merged with bridge method [inline-methods] */
|
||||
public abstract zzbx iterator();
|
||||
|
||||
@CheckForNull
|
||||
Object[] zze() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection
|
||||
public final Object[] toArray(Object[] objArr) {
|
||||
objArr.getClass();
|
||||
int size = size();
|
||||
int length = objArr.length;
|
||||
if (length < size) {
|
||||
Object[] objArrZze = zze();
|
||||
if (objArrZze != null) {
|
||||
return Arrays.copyOfRange(objArrZze, zzc(), zzb(), objArr.getClass());
|
||||
}
|
||||
if (length != 0) {
|
||||
objArr = Arrays.copyOf(objArr, 0);
|
||||
}
|
||||
objArr = Arrays.copyOf(objArr, size);
|
||||
} else if (length > size) {
|
||||
objArr[size] = null;
|
||||
}
|
||||
zza(objArr, 0);
|
||||
return objArr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzbg extends zzbc {
|
||||
private final zzbi zza;
|
||||
|
||||
zzbg(zzbi zzbiVar, int i) {
|
||||
super(zzbiVar.size(), i);
|
||||
this.zza = zzbiVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbc
|
||||
protected final Object zza(int i) {
|
||||
return this.zza.get(i);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import java.util.List;
|
||||
import javax.annotation.CheckForNull;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzbh extends zzbi {
|
||||
final transient int zza;
|
||||
final transient int zzb;
|
||||
final /* synthetic */ zzbi zzc;
|
||||
|
||||
zzbh(zzbi zzbiVar, int i, int i2) {
|
||||
this.zzc = zzbiVar;
|
||||
this.zza = i;
|
||||
this.zzb = i2;
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
public final Object get(int i) {
|
||||
zzba.zza(i, this.zzb, "index");
|
||||
return this.zzc.get(i + this.zza);
|
||||
}
|
||||
|
||||
@Override // java.util.AbstractCollection, java.util.Collection, java.util.List
|
||||
public final int size() {
|
||||
return this.zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbi, java.util.List
|
||||
public final /* bridge */ /* synthetic */ List subList(int i, int i2) {
|
||||
return subList(i, i2);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbf
|
||||
final int zzb() {
|
||||
return this.zzc.zzc() + this.zza + this.zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbf
|
||||
final int zzc() {
|
||||
return this.zzc.zzc() + this.zza;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbf
|
||||
@CheckForNull
|
||||
final Object[] zze() {
|
||||
return this.zzc.zze();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbi
|
||||
/* JADX INFO: renamed from: zzf */
|
||||
public final zzbi subList(int i, int i2) {
|
||||
zzba.zzc(i, i2, this.zzb);
|
||||
int i3 = this.zza;
|
||||
return this.zzc.subList(i + i3, i2 + i3);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,160 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.ListIterator;
|
||||
import java.util.RandomAccess;
|
||||
import javax.annotation.CheckForNull;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzbi extends zzbf implements List, RandomAccess {
|
||||
private static final zzby zza = new zzbg(zzbo.zza, 0);
|
||||
public static final /* synthetic */ int zzd = 0;
|
||||
|
||||
zzbi() {
|
||||
}
|
||||
|
||||
static zzbi zzg(Object[] objArr, int i) {
|
||||
return i == 0 ? zzbo.zza : new zzbo(objArr, i);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
@Deprecated
|
||||
public final void add(int i, Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
@Deprecated
|
||||
public final boolean addAll(int i, Collection collection) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbf, java.util.AbstractCollection, java.util.Collection
|
||||
public final boolean contains(@CheckForNull Object obj) {
|
||||
return indexOf(obj) >= 0;
|
||||
}
|
||||
|
||||
@Override // java.util.Collection, java.util.List
|
||||
public final boolean equals(@CheckForNull Object obj) {
|
||||
if (obj == this) {
|
||||
return true;
|
||||
}
|
||||
if (obj instanceof List) {
|
||||
List list = (List) obj;
|
||||
int size = size();
|
||||
if (size == list.size()) {
|
||||
if (list instanceof RandomAccess) {
|
||||
for (int i = 0; i < size; i++) {
|
||||
if (zzaz.zza(get(i), list.get(i))) {
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
Iterator it = iterator();
|
||||
Iterator it2 = list.iterator();
|
||||
while (true) {
|
||||
if (it.hasNext()) {
|
||||
if (!it2.hasNext() || !zzaz.zza(it.next(), it2.next())) {
|
||||
break;
|
||||
}
|
||||
} else if (!it2.hasNext()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override // java.util.Collection, java.util.List
|
||||
public final int hashCode() {
|
||||
int size = size();
|
||||
int iHashCode = 1;
|
||||
for (int i = 0; i < size; i++) {
|
||||
iHashCode = (iHashCode * 31) + get(i).hashCode();
|
||||
}
|
||||
return iHashCode;
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
public final int indexOf(@CheckForNull Object obj) {
|
||||
if (obj == null) {
|
||||
return -1;
|
||||
}
|
||||
int size = size();
|
||||
for (int i = 0; i < size; i++) {
|
||||
if (obj.equals(get(i))) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbf, java.util.AbstractCollection, java.util.Collection, java.lang.Iterable
|
||||
public final /* synthetic */ Iterator iterator() {
|
||||
return listIterator(0);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
public final int lastIndexOf(@CheckForNull Object obj) {
|
||||
if (obj == null) {
|
||||
return -1;
|
||||
}
|
||||
for (int size = size() - 1; size >= 0; size--) {
|
||||
if (obj.equals(get(size))) {
|
||||
return size;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
public final /* synthetic */ ListIterator listIterator() {
|
||||
return listIterator(0);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
@Deprecated
|
||||
public final Object remove(int i) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
@Deprecated
|
||||
public final Object set(int i, Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbf
|
||||
int zza(Object[] objArr, int i) {
|
||||
int size = size();
|
||||
for (int i2 = 0; i2 < size; i2++) {
|
||||
objArr[i2] = get(i2);
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbf
|
||||
/* JADX INFO: renamed from: zzd */
|
||||
public final zzbx iterator() {
|
||||
return listIterator(0);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
/* JADX INFO: renamed from: zzf, reason: merged with bridge method [inline-methods] */
|
||||
public zzbi subList(int i, int i2) {
|
||||
zzba.zzc(i, i2, size());
|
||||
int i3 = i2 - i;
|
||||
return i3 == size() ? this : i3 == 0 ? zzbo.zza : new zzbh(this, i, i3);
|
||||
}
|
||||
|
||||
@Override // java.util.List
|
||||
/* JADX INFO: renamed from: zzh, reason: merged with bridge method [inline-methods] */
|
||||
public final zzby listIterator(int i) {
|
||||
zzba.zzb(i, size(), "index");
|
||||
return isEmpty() ? zza : new zzbg(this, i);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
final class zzbj {
|
||||
private final Object zza;
|
||||
private final Object zzb;
|
||||
private final Object zzc;
|
||||
|
||||
zzbj(Object obj, Object obj2, Object obj3) {
|
||||
this.zza = obj;
|
||||
this.zzb = obj2;
|
||||
this.zzc = obj3;
|
||||
}
|
||||
|
||||
final IllegalArgumentException zza() {
|
||||
Object obj = this.zzc;
|
||||
Object obj2 = this.zzb;
|
||||
Object obj3 = this.zza;
|
||||
return new IllegalArgumentException("Multiple entries with same key: " + String.valueOf(obj3) + "=" + String.valueOf(obj2) + " and " + String.valueOf(obj3) + "=" + String.valueOf(obj));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zzbk {
|
||||
Object[] zza;
|
||||
int zzb;
|
||||
zzbj zzc;
|
||||
|
||||
public zzbk() {
|
||||
this(4);
|
||||
}
|
||||
|
||||
private final void zzb(int i) {
|
||||
Object[] objArr = this.zza;
|
||||
int length = objArr.length;
|
||||
int i2 = i + i;
|
||||
if (i2 > length) {
|
||||
int i3 = length + (length >> 1) + 1;
|
||||
if (i3 < i2) {
|
||||
int iHighestOneBit = Integer.highestOneBit(i2 - 1);
|
||||
i3 = iHighestOneBit + iHighestOneBit;
|
||||
}
|
||||
if (i3 < 0) {
|
||||
i3 = Integer.MAX_VALUE;
|
||||
}
|
||||
this.zza = Arrays.copyOf(objArr, i3);
|
||||
}
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
public final zzbk zza(Iterable iterable) {
|
||||
if (iterable instanceof Collection) {
|
||||
zzb(this.zzb + iterable.size());
|
||||
}
|
||||
Iterator it = iterable.iterator();
|
||||
while (it.hasNext()) {
|
||||
Map.Entry entry = (Map.Entry) it.next();
|
||||
Object key = entry.getKey();
|
||||
Object value = entry.getValue();
|
||||
zzb(this.zzb + 1);
|
||||
zzbd.zza(key, value);
|
||||
Object[] objArr = this.zza;
|
||||
int i = this.zzb;
|
||||
int i2 = i + i;
|
||||
objArr[i2] = key;
|
||||
objArr[i2 + 1] = value;
|
||||
this.zzb = i + 1;
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
zzbk(int i) {
|
||||
this.zza = new Object[i + i];
|
||||
this.zzb = 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,171 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Collection;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import javax.annotation.CheckForNull;
|
||||
import kotlinx.serialization.json.internal.AbstractJsonLexerKt;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzbl implements Map, Serializable {
|
||||
|
||||
@CheckForNull
|
||||
private transient zzbm zza;
|
||||
|
||||
@CheckForNull
|
||||
private transient zzbm zzb;
|
||||
|
||||
@CheckForNull
|
||||
private transient zzbf zzc;
|
||||
|
||||
zzbl() {
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
public static zzbl zzc(Iterable iterable) {
|
||||
zzbk zzbkVar = new zzbk(iterable instanceof Collection ? iterable.size() : 4);
|
||||
zzbkVar.zza(iterable);
|
||||
zzbj zzbjVar = zzbkVar.zzc;
|
||||
if (zzbjVar != null) {
|
||||
throw zzbjVar.zza();
|
||||
}
|
||||
zzbt zzbtVarZzg = zzbt.zzg(zzbkVar.zzb, zzbkVar.zza, zzbkVar);
|
||||
zzbj zzbjVar2 = zzbkVar.zzc;
|
||||
if (zzbjVar2 == null) {
|
||||
return zzbtVarZzg;
|
||||
}
|
||||
throw zzbjVar2.zza();
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
@Deprecated
|
||||
public final void clear() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
public final boolean containsKey(@CheckForNull Object obj) {
|
||||
return get(obj) != null;
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
public final boolean containsValue(@CheckForNull Object obj) {
|
||||
return values().contains(obj);
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
public final boolean equals(@CheckForNull Object obj) {
|
||||
if (this == obj) {
|
||||
return true;
|
||||
}
|
||||
if (obj instanceof Map) {
|
||||
return entrySet().equals(((Map) obj).entrySet());
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
@CheckForNull
|
||||
public abstract Object get(@CheckForNull Object obj);
|
||||
|
||||
@Override // java.util.Map
|
||||
@CheckForNull
|
||||
public final Object getOrDefault(@CheckForNull Object obj, @CheckForNull Object obj2) {
|
||||
Object obj3 = get(obj);
|
||||
return obj3 != null ? obj3 : obj2;
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
public final int hashCode() {
|
||||
return zzbv.zza(entrySet());
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
public final boolean isEmpty() {
|
||||
return size() == 0;
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
public final /* bridge */ /* synthetic */ Set keySet() {
|
||||
zzbm zzbmVar = this.zzb;
|
||||
if (zzbmVar != null) {
|
||||
return zzbmVar;
|
||||
}
|
||||
zzbm zzbmVarZze = zze();
|
||||
this.zzb = zzbmVarZze;
|
||||
return zzbmVarZze;
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
@CheckForNull
|
||||
@Deprecated
|
||||
public final Object put(Object obj, Object obj2) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
@Deprecated
|
||||
public final void putAll(Map map) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override // java.util.Map
|
||||
@CheckForNull
|
||||
@Deprecated
|
||||
public final Object remove(@CheckForNull Object obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public final String toString() {
|
||||
int size = size();
|
||||
if (size < 0) {
|
||||
throw new IllegalArgumentException("size cannot be negative but was: " + size);
|
||||
}
|
||||
StringBuilder sb = new StringBuilder((int) Math.min(((long) size) * 8, 1073741824L));
|
||||
sb.append(AbstractJsonLexerKt.BEGIN_OBJ);
|
||||
boolean z = true;
|
||||
for (Map.Entry entry : entrySet()) {
|
||||
if (!z) {
|
||||
sb.append(", ");
|
||||
}
|
||||
sb.append(entry.getKey());
|
||||
sb.append('=');
|
||||
sb.append(entry.getValue());
|
||||
z = false;
|
||||
}
|
||||
sb.append(AbstractJsonLexerKt.END_OBJ);
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
abstract zzbf zza();
|
||||
|
||||
@Override // java.util.Map
|
||||
/* JADX INFO: renamed from: zzb, reason: merged with bridge method [inline-methods] */
|
||||
public final zzbf values() {
|
||||
zzbf zzbfVar = this.zzc;
|
||||
if (zzbfVar != null) {
|
||||
return zzbfVar;
|
||||
}
|
||||
zzbf zzbfVarZza = zza();
|
||||
this.zzc = zzbfVarZza;
|
||||
return zzbfVarZza;
|
||||
}
|
||||
|
||||
abstract zzbm zzd();
|
||||
|
||||
abstract zzbm zze();
|
||||
|
||||
@Override // java.util.Map
|
||||
/* JADX INFO: renamed from: zzf, reason: merged with bridge method [inline-methods] */
|
||||
public final zzbm entrySet() {
|
||||
zzbm zzbmVar = this.zza;
|
||||
if (zzbmVar != null) {
|
||||
return zzbmVar;
|
||||
}
|
||||
zzbm zzbmVarZzd = zzd();
|
||||
this.zza = zzbmVarZzd;
|
||||
return zzbmVarZzd;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,147 @@
|
||||
package com.google.android.gms.internal.maps;
|
||||
|
||||
import com.google.android.gms.maps.model.FeatureType;
|
||||
import java.util.Arrays;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import javax.annotation.CheckForNull;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public abstract class zzbm extends zzbf implements Set {
|
||||
|
||||
@CheckForNull
|
||||
private transient zzbi zza;
|
||||
|
||||
zzbm() {
|
||||
}
|
||||
|
||||
static int zzf(int i) {
|
||||
int iMax = Math.max(i, 2);
|
||||
if (iMax >= 751619276) {
|
||||
if (iMax < 1073741824) {
|
||||
return 1073741824;
|
||||
}
|
||||
throw new IllegalArgumentException("collection too large");
|
||||
}
|
||||
int iHighestOneBit = Integer.highestOneBit(iMax - 1);
|
||||
do {
|
||||
iHighestOneBit += iHighestOneBit;
|
||||
} while (((double) iHighestOneBit) * 0.7d < iMax);
|
||||
return iHighestOneBit;
|
||||
}
|
||||
|
||||
@SafeVarargs
|
||||
public static zzbm zzi(Object obj, Object obj2, Object obj3, Object obj4, Object obj5, Object obj6, Object... objArr) {
|
||||
Object[] objArr2 = new Object[7];
|
||||
objArr2[0] = FeatureType.ADMINISTRATIVE_AREA_LEVEL_1;
|
||||
objArr2[1] = FeatureType.ADMINISTRATIVE_AREA_LEVEL_2;
|
||||
objArr2[2] = FeatureType.COUNTRY;
|
||||
objArr2[3] = FeatureType.LOCALITY;
|
||||
objArr2[4] = FeatureType.POSTAL_CODE;
|
||||
objArr2[5] = FeatureType.SCHOOL_DISTRICT;
|
||||
System.arraycopy(objArr, 0, objArr2, 6, 1);
|
||||
return zzk(7, objArr2);
|
||||
}
|
||||
|
||||
@Override // java.util.Collection, java.util.Set
|
||||
public final boolean equals(@CheckForNull Object obj) {
|
||||
if (obj == this) {
|
||||
return true;
|
||||
}
|
||||
if ((obj instanceof zzbm) && zzj() && ((zzbm) obj).zzj() && hashCode() != obj.hashCode()) {
|
||||
return false;
|
||||
}
|
||||
if (obj == this) {
|
||||
return true;
|
||||
}
|
||||
if (obj instanceof Set) {
|
||||
Set set = (Set) obj;
|
||||
try {
|
||||
if (size() == set.size()) {
|
||||
if (containsAll(set)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
} catch (ClassCastException | NullPointerException unused) {
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override // java.util.Collection, java.util.Set
|
||||
public int hashCode() {
|
||||
return zzbv.zza(this);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzbf, java.util.AbstractCollection, java.util.Collection, java.lang.Iterable
|
||||
/* JADX INFO: renamed from: zzd */
|
||||
public abstract zzbx iterator();
|
||||
|
||||
public final zzbi zzg() {
|
||||
zzbi zzbiVar = this.zza;
|
||||
if (zzbiVar != null) {
|
||||
return zzbiVar;
|
||||
}
|
||||
zzbi zzbiVarZzh = zzh();
|
||||
this.zza = zzbiVarZzh;
|
||||
return zzbiVarZzh;
|
||||
}
|
||||
|
||||
zzbi zzh() {
|
||||
Object[] array = toArray();
|
||||
int i = zzbi.zzd;
|
||||
return zzbi.zzg(array, array.length);
|
||||
}
|
||||
|
||||
boolean zzj() {
|
||||
return false;
|
||||
}
|
||||
|
||||
private static zzbm zzk(int i, Object... objArr) {
|
||||
if (i == 0) {
|
||||
return zzbu.zza;
|
||||
}
|
||||
if (i == 1) {
|
||||
return new zzbw(Objects.requireNonNull(objArr[0]));
|
||||
}
|
||||
int iZzf = zzf(i);
|
||||
Object[] objArr2 = new Object[iZzf];
|
||||
int i2 = iZzf - 1;
|
||||
int i3 = 0;
|
||||
int i4 = 0;
|
||||
for (int i5 = 0; i5 < i; i5++) {
|
||||
Object obj = objArr[i5];
|
||||
if (obj == null) {
|
||||
throw new NullPointerException("at index " + i5);
|
||||
}
|
||||
int iHashCode = obj.hashCode();
|
||||
int iZza = zzbe.zza(iHashCode);
|
||||
while (true) {
|
||||
int i6 = iZza & i2;
|
||||
Object obj2 = objArr2[i6];
|
||||
if (obj2 == null) {
|
||||
objArr[i4] = obj;
|
||||
objArr2[i6] = obj;
|
||||
i3 += iHashCode;
|
||||
i4++;
|
||||
break;
|
||||
}
|
||||
if (!obj2.equals(obj)) {
|
||||
iZza++;
|
||||
}
|
||||
}
|
||||
}
|
||||
Arrays.fill(objArr, i4, i, (Object) null);
|
||||
if (i4 == 1) {
|
||||
return new zzbw(Objects.requireNonNull(objArr[0]));
|
||||
}
|
||||
if (zzf(i4) < iZzf / 2) {
|
||||
return zzk(i4, objArr);
|
||||
}
|
||||
if (i4 < 4) {
|
||||
objArr = Arrays.copyOf(objArr, i4);
|
||||
}
|
||||
return new zzbu(objArr, i3, objArr2, i2, i4);
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user