Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
package com.google.android.material.transformation;
import A.b;
import O.X;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import androidx.coordinatorlayout.widget.CoordinatorLayout;
import java.util.ArrayList;
import java.util.WeakHashMap;
@Deprecated
/* loaded from: classes3.dex */
public abstract class ExpandableBehavior extends b {
public ExpandableBehavior() {
}
@Override // A.b
public abstract void f(View view);
@Override // A.b
public final boolean h(CoordinatorLayout coordinatorLayout, View view, View view2) {
view2.getClass();
throw new ClassCastException();
}
@Override // A.b
public final boolean k(CoordinatorLayout coordinatorLayout, View view, int i) {
WeakHashMap weakHashMap = X.f1226a;
if (!view.isLaidOut()) {
ArrayList j4 = coordinatorLayout.j(view);
int size = j4.size();
for (int i4 = 0; i4 < size; i4++) {
f(view);
}
}
return false;
}
public ExpandableBehavior(Context context, AttributeSet attributeSet) {
}
}

View File

@@ -0,0 +1,15 @@
package com.google.android.material.transformation;
import android.content.Context;
import android.util.AttributeSet;
@Deprecated
/* loaded from: classes3.dex */
public abstract class ExpandableTransformationBehavior extends ExpandableBehavior {
public ExpandableTransformationBehavior() {
}
public ExpandableTransformationBehavior(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
}

View File

@@ -0,0 +1,39 @@
package com.google.android.material.transformation;
import A.e;
import android.content.Context;
import android.graphics.Rect;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;
@Deprecated
/* loaded from: classes3.dex */
public abstract class FabTransformationBehavior extends ExpandableTransformationBehavior {
public FabTransformationBehavior() {
new Rect();
new RectF();
new RectF();
}
@Override // com.google.android.material.transformation.ExpandableBehavior, A.b
public final void f(View view) {
if (view.getVisibility() == 8) {
throw new IllegalStateException("This behavior cannot be attached to a GONE view. Set the view to INVISIBLE instead.");
}
}
@Override // A.b
public final void g(e eVar) {
if (eVar.h == 0) {
eVar.h = 80;
}
}
public FabTransformationBehavior(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
new Rect();
new RectF();
new RectF();
}
}

View File

@@ -0,0 +1,26 @@
package com.google.android.material.transformation;
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
@Deprecated
/* loaded from: classes3.dex */
public class FabTransformationScrimBehavior extends ExpandableTransformationBehavior {
public FabTransformationScrimBehavior() {
}
@Override // com.google.android.material.transformation.ExpandableBehavior, A.b
public final void f(View view) {
}
@Override // A.b
public final boolean u(View view, MotionEvent motionEvent) {
return false;
}
public FabTransformationScrimBehavior(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
}

View File

@@ -0,0 +1,15 @@
package com.google.android.material.transformation;
import android.content.Context;
import android.util.AttributeSet;
@Deprecated
/* loaded from: classes3.dex */
public class FabTransformationSheetBehavior extends FabTransformationBehavior {
public FabTransformationSheetBehavior() {
}
public FabTransformationSheetBehavior(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
}