88.2 - Alpha (88202)

This commit is contained in:
Juby210 2021-08-11 08:37:47 +02:00
parent 629b573d52
commit 6dce862863
5067 changed files with 56119 additions and 52908 deletions

View File

@ -10,8 +10,8 @@ android {
applicationId 'com.discord'
minSdkVersion 21
targetSdkVersion 29
versionCode 88201
versionName "88.1 - Alpha"
versionCode 88202
versionName "88.2 - Alpha"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="88201" android:versionName="88.1 - Alpha" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="88202" android:versionName="88.2 - Alpha" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>

View File

@ -35,12 +35,12 @@ public final class RatingCompat implements Parcelable {
@Override // java.lang.Object
public String toString() {
StringBuilder K = c.d.b.a.a.K("Rating:style=");
K.append(this.i);
K.append(" rating=");
StringBuilder L = c.d.b.a.a.L("Rating:style=");
L.append(this.i);
L.append(" rating=");
float f = this.j;
K.append(f < 0.0f ? "unrated" : String.valueOf(f));
return K.toString();
L.append(f < 0.0f ? "unrated" : String.valueOf(f));
return L.toString();
}
@Override // android.os.Parcelable

View File

@ -59,10 +59,10 @@ public class MediaSessionCompat {
@Override // java.lang.Object
public String toString() {
StringBuilder K = c.d.b.a.a.K("MediaSession.QueueItem {Description=");
K.append(this.i);
K.append(", Id=");
return c.d.b.a.a.y(K, this.j, " }");
StringBuilder L = c.d.b.a.a.L("MediaSession.QueueItem {Description=");
L.append(this.i);
L.append(", Id=");
return c.d.b.a.a.y(L, this.j, " }");
}
@Override // android.os.Parcelable

View File

@ -66,13 +66,13 @@ public final class PlaybackStateCompat implements Parcelable {
@Override // java.lang.Object
public String toString() {
StringBuilder K = c.d.b.a.a.K("Action:mName='");
K.append((Object) this.j);
K.append(", mIcon=");
K.append(this.k);
K.append(", mExtras=");
K.append(this.l);
return K.toString();
StringBuilder L = c.d.b.a.a.L("Action:mName='");
L.append((Object) this.j);
L.append(", mIcon=");
L.append(this.k);
L.append(", mExtras=");
L.append(this.l);
return L.toString();
}
@Override // android.os.Parcelable

View File

@ -415,9 +415,9 @@ public class ComponentActivity extends androidx.core.app.ComponentActivity imple
@Override // androidx.activity.result.ActivityResultCaller
@NonNull
public final <I, O> ActivityResultLauncher<I> registerForActivityResult(@NonNull ActivityResultContract<I, O> activityResultContract, @NonNull ActivityResultRegistry activityResultRegistry, @NonNull ActivityResultCallback<O> activityResultCallback) {
StringBuilder K = a.K("activity_rq#");
K.append(this.mNextLocalRequestCode.getAndIncrement());
return activityResultRegistry.register(K.toString(), this, activityResultContract, activityResultCallback);
StringBuilder L = a.L("activity_rq#");
L.append(this.mNextLocalRequestCode.getAndIncrement());
return activityResultRegistry.register(L.toString(), this, activityResultContract, activityResultCallback);
}
@Override // androidx.activity.contextaware.ContextAware

View File

@ -59,12 +59,12 @@ public final class ActivityResult implements Parcelable {
@Override // java.lang.Object
public String toString() {
StringBuilder K = a.K("ActivityResult{resultCode=");
K.append(resultCodeToString(this.mResultCode));
K.append(", data=");
K.append(this.mData);
K.append('}');
return K.toString();
StringBuilder L = a.L("ActivityResult{resultCode=");
L.append(resultCodeToString(this.mResultCode));
L.append(", data=");
L.append(this.mData);
L.append('}');
return L.toString();
}
@Override // android.os.Parcelable

View File

@ -288,15 +288,15 @@ public abstract class ActivityResultRegistry {
}
this.mKeyToCallback.remove(str);
if (this.mParsedPendingResults.containsKey(str)) {
StringBuilder P = a.P("Dropping pending result for request ", str, ": ");
P.append(this.mParsedPendingResults.get(str));
Log.w(LOG_TAG, P.toString());
StringBuilder Q = a.Q("Dropping pending result for request ", str, ": ");
Q.append(this.mParsedPendingResults.get(str));
Log.w(LOG_TAG, Q.toString());
this.mParsedPendingResults.remove(str);
}
if (this.mPendingResults.containsKey(str)) {
StringBuilder P2 = a.P("Dropping pending result for request ", str, ": ");
P2.append(this.mPendingResults.getParcelable(str));
Log.w(LOG_TAG, P2.toString());
StringBuilder Q2 = a.Q("Dropping pending result for request ", str, ": ");
Q2.append(this.mPendingResults.getParcelable(str));
Log.w(LOG_TAG, Q2.toString());
this.mPendingResults.remove(str);
}
LifecycleContainer lifecycleContainer = this.mKeyToLifecycleContainers.get(str);

View File

@ -1165,16 +1165,16 @@ public class AppCompatDelegateImpl extends AppCompatDelegate implements MenuBuil
contentFrameLayout.setAttachListener(new AnonymousClass5());
return viewGroup;
}
StringBuilder K = a.K("AppCompat does not support the current theme features: { windowActionBar: ");
K.append(this.mHasActionBar);
K.append(", windowActionBarOverlay: ");
K.append(this.mOverlayActionBar);
K.append(", android:windowIsFloating: ");
K.append(this.mIsFloating);
K.append(", windowActionModeOverlay: ");
K.append(this.mOverlayActionMode);
K.append(", windowNoTitle: ");
throw new IllegalArgumentException(a.F(K, this.mWindowNoTitle, " }"));
StringBuilder L = a.L("AppCompat does not support the current theme features: { windowActionBar: ");
L.append(this.mHasActionBar);
L.append(", windowActionBarOverlay: ");
L.append(this.mOverlayActionBar);
L.append(", android:windowIsFloating: ");
L.append(this.mIsFloating);
L.append(", windowActionModeOverlay: ");
L.append(this.mOverlayActionMode);
L.append(", windowNoTitle: ");
throw new IllegalArgumentException(a.G(L, this.mWindowNoTitle, " }"));
}
obtainStyledAttributes.recycle();
throw new IllegalStateException("You need to use a Theme.AppCompat theme (or descendant) with this activity.");

View File

@ -69,17 +69,17 @@ public class AppCompatViewInflater {
if (id2 == -1) {
str = "";
} else {
StringBuilder K = a.K(" with id '");
K.append(this.mHostView.getContext().getResources().getResourceEntryName(id2));
K.append("'");
str = K.toString();
StringBuilder L = a.L(" with id '");
L.append(this.mHostView.getContext().getResources().getResourceEntryName(id2));
L.append("'");
str = L.toString();
}
StringBuilder K2 = a.K("Could not find method ");
K2.append(this.mMethodName);
K2.append("(View) in a parent or ancestor Context for android:onClick attribute defined on view ");
K2.append(this.mHostView.getClass());
K2.append(str);
throw new IllegalStateException(K2.toString());
StringBuilder L2 = a.L("Could not find method ");
L2.append(this.mMethodName);
L2.append("(View) in a parent or ancestor Context for android:onClick attribute defined on view ");
L2.append(this.mHostView.getClass());
L2.append(str);
throw new IllegalStateException(L2.toString());
}
@Override // android.view.View.OnClickListener

View File

@ -509,9 +509,9 @@ public class WindowDecorActionBar extends ActionBar implements ActionBarOverlayL
if (view instanceof Toolbar) {
return ((Toolbar) view).getWrapper();
}
StringBuilder K = a.K("Can't make a decor toolbar out of ");
K.append(view != null ? view.getClass().getSimpleName() : "null");
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Can't make a decor toolbar out of ");
L.append(view != null ? view.getClass().getSimpleName() : "null");
throw new IllegalStateException(L.toString());
}
private void hideForActionMode() {

View File

@ -57,9 +57,9 @@ public class SupportMenuInflater extends MenuInflater {
try {
this.mMethod = cls.getMethod(str, PARAM_TYPES);
} catch (Exception e) {
StringBuilder P = a.P("Couldn't resolve menu item onClick handler ", str, " in class ");
P.append(cls.getName());
InflateException inflateException = new InflateException(P.toString());
StringBuilder Q = a.Q("Couldn't resolve menu item onClick handler ", str, " in class ");
Q.append(cls.getName());
InflateException inflateException = new InflateException(Q.toString());
inflateException.initCause(e);
throw inflateException;
}

View File

@ -219,9 +219,9 @@ public class ActionBarOverlayLayout extends ViewGroup implements DecorContentPar
if (view instanceof Toolbar) {
return ((Toolbar) view).getWrapper();
}
StringBuilder K = a.K("Can't make a decor toolbar out of ");
K.append(view.getClass().getSimpleName());
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Can't make a decor toolbar out of ");
L.append(view.getClass().getSimpleName());
throw new IllegalStateException(L.toString());
}
private void init(Context context) {

View File

@ -86,12 +86,12 @@ public class ActivityChooserModel extends DataSetObservable {
@Override // java.lang.Object
public String toString() {
StringBuilder O = a.O("[", "resolveInfo:");
O.append(this.resolveInfo.toString());
O.append("; weight:");
O.append(new BigDecimal((double) this.weight));
O.append("]");
return O.toString();
StringBuilder P = a.P("[", "resolveInfo:");
P.append(this.resolveInfo.toString());
P.append("; weight:");
P.append(new BigDecimal((double) this.weight));
P.append("]");
return P.toString();
}
}
@ -169,14 +169,14 @@ public class ActivityChooserModel extends DataSetObservable {
}
public String toString() {
StringBuilder O = a.O("[", "; activity:");
O.append(this.activity);
O.append("; time:");
O.append(this.time);
O.append("; weight:");
O.append(new BigDecimal((double) this.weight));
O.append("]");
return O.toString();
StringBuilder P = a.P("[", "; activity:");
P.append(this.activity);
P.append("; time:");
P.append(this.time);
P.append("; weight:");
P.append(new BigDecimal((double) this.weight));
P.append("]");
return P.toString();
}
}

View File

@ -471,9 +471,9 @@ public class AppCompatTextViewAutoSizeHelper {
}
this.mAutoSizeTextSizesInPx = cleanupAutoSizePresetSizes(iArr2);
if (!setupAutoSizeUniformPresetSizesConfiguration()) {
StringBuilder K = a.K("None of the preset sizes is valid: ");
K.append(Arrays.toString(iArr));
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("None of the preset sizes is valid: ");
L.append(Arrays.toString(iArr));
throw new IllegalArgumentException(L.toString());
}
} else {
this.mHasPresetAutoSizeValues = false;

View File

@ -1263,10 +1263,10 @@ public class LinearLayoutCompat extends ViewGroup {
public void setBaselineAlignedChildIndex(int i) {
if (i < 0 || i >= getChildCount()) {
StringBuilder K = a.K("base aligned child index out of range (0, ");
K.append(getChildCount());
K.append(")");
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("base aligned child index out of range (0, ");
L.append(getChildCount());
L.append(")");
throw new IllegalArgumentException(L.toString());
}
this.mBaselineAlignedChildIndex = i;
}

View File

@ -312,9 +312,9 @@ public class ListPopupWindow implements ShowableListMenu {
linearLayout.addView(view);
linearLayout.addView(dropDownListView, layoutParams);
} else if (i5 != 1) {
StringBuilder K = a.K("Invalid hint position ");
K.append(this.mPromptPosition);
Log.e(TAG, K.toString());
StringBuilder L = a.L("Invalid hint position ");
L.append(this.mPromptPosition);
Log.e(TAG, L.toString());
} else {
linearLayout.addView(dropDownListView, layoutParams);
linearLayout.addView(view);

View File

@ -379,10 +379,10 @@ public class SearchView extends LinearLayoutCompat implements CollapsibleActionV
@Override // java.lang.Object
public String toString() {
StringBuilder K = a.K("SearchView.SavedState{");
K.append(Integer.toHexString(System.identityHashCode(this)));
K.append(" isIconified=");
return a.F(K, this.isIconified, "}");
StringBuilder L = a.L("SearchView.SavedState{");
L.append(Integer.toHexString(System.identityHashCode(this)));
L.append(" isIconified=");
return a.G(L, this.isIconified, "}");
}
@Override // androidx.customview.view.AbsSavedState, android.os.Parcelable

View File

@ -111,9 +111,9 @@ public class SuggestionsAdapter extends ResourceCursorAdapter implements View.On
if (drawable != null) {
return drawable;
}
StringBuilder L = a.L("Invalid icon resource ", iconResource, " for ");
L.append(componentName.flattenToShortString());
Log.w(LOG_TAG, L.toString());
StringBuilder M = a.M("Invalid icon resource ", iconResource, " for ");
M.append(componentName.flattenToShortString());
Log.w(LOG_TAG, M.toString());
return null;
} catch (PackageManager.NameNotFoundException e) {
Log.w(LOG_TAG, e.toString());
@ -206,7 +206,7 @@ public class SuggestionsAdapter extends ResourceCursorAdapter implements View.On
storeInIconCache(str, drawable2);
return drawable2;
} catch (Resources.NotFoundException unused2) {
a.g0("Icon resource not found: ", str, LOG_TAG);
a.h0("Icon resource not found: ", str, LOG_TAG);
return null;
}
}

View File

@ -319,15 +319,15 @@ public class SafeIterableMap<K, V> implements Iterable<Map.Entry<K, V>> {
@Override // java.lang.Object
public String toString() {
StringBuilder K = a.K("[");
StringBuilder L = a.L("[");
Iterator<Map.Entry<K, V>> it = iterator();
while (it.hasNext()) {
K.append(it.next().toString());
L.append(it.next().toString());
if (it.hasNext()) {
K.append(", ");
L.append(", ");
}
}
K.append("]");
return K.toString();
L.append("]");
return L.toString();
}
}

View File

@ -230,9 +230,9 @@ public final class BrowserServiceFileProvider extends FileProvider {
@NonNull
@UiThread
public static ResolvableFuture<Uri> saveBitmap(@NonNull Context context, @NonNull Bitmap bitmap, @NonNull String str, int i) {
StringBuilder O = a.O(str, "_");
O.append(Integer.toString(i));
String sb = O.toString();
StringBuilder P = a.P(str, "_");
P.append(Integer.toString(i));
String sb = P.toString();
Uri generateUri = generateUri(context, sb);
ResolvableFuture<Uri> create = ResolvableFuture.create();
new FileSaveTask(context, sb, bitmap, generateUri, create).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, new String[0]);

View File

@ -66,9 +66,9 @@ public class ConnectionHolder implements ServiceConnection {
} else {
throw this.mCancellationException;
}
StringBuilder K = a.K("ConnectionHolder, state = ");
K.append(this.mState);
return K.toString();
StringBuilder L = a.L("ConnectionHolder, state = ");
L.append(this.mState);
return L.toString();
}
@MainThread

View File

@ -99,16 +99,16 @@ public final class TrustedWebActivityServiceConnectionPool {
ResolveInfo resolveService = context.getPackageManager().resolveService(intent2, 131072);
if (resolveService == null) {
if (z2) {
a.g0("Could not find TWAService for ", str, TAG);
a.h0("Could not find TWAService for ", str, TAG);
}
return null;
}
if (z2) {
StringBuilder K = a.K("Found ");
K.append(resolveService.serviceInfo.name);
K.append(" to handle request for ");
K.append(uri);
Log.i(TAG, K.toString());
StringBuilder L = a.L("Found ");
L.append(resolveService.serviceInfo.name);
L.append(" to handle request for ");
L.append(uri);
Log.i(TAG, L.toString());
}
Intent intent3 = new Intent();
intent3.setComponent(new ComponentName(str, resolveService.serviceInfo.name));

View File

@ -595,9 +595,9 @@ public abstract class AbstractResolvableFuture<V> implements a<V> {
String timeUnit2 = timeUnit.toString();
Locale locale = Locale.ROOT;
String lowerCase = timeUnit2.toLowerCase(locale);
StringBuilder N = c.d.b.a.a.N("Waited ", j, " ");
N.append(timeUnit.toString().toLowerCase(locale));
String sb = N.toString();
StringBuilder O = c.d.b.a.a.O("Waited ", j, " ");
O.append(timeUnit.toString().toLowerCase(locale));
String sb = O.toString();
if (nanos + 1000 < 0) {
String s2 = c.d.b.a.a.s(sb, " (plus ");
long j2 = -nanos;
@ -649,15 +649,15 @@ public abstract class AbstractResolvableFuture<V> implements a<V> {
public String pendingToString() {
Object obj = this.value;
if (obj instanceof SetFuture) {
return c.d.b.a.a.C(c.d.b.a.a.K("setFuture=["), userObjectToString(((SetFuture) obj).future), "]");
return c.d.b.a.a.D(c.d.b.a.a.L("setFuture=["), userObjectToString(((SetFuture) obj).future), "]");
}
if (!(this instanceof ScheduledFuture)) {
return null;
}
StringBuilder K = c.d.b.a.a.K("remaining delay=[");
K.append(((ScheduledFuture) this).getDelay(TimeUnit.MILLISECONDS));
K.append(" ms]");
return K.toString();
StringBuilder L = c.d.b.a.a.L("remaining delay=[");
L.append(((ScheduledFuture) this).getDelay(TimeUnit.MILLISECONDS));
L.append(" ms]");
return L.toString();
}
public boolean set(@Nullable V v) {
@ -725,9 +725,9 @@ public abstract class AbstractResolvableFuture<V> implements a<V> {
try {
str = pendingToString();
} catch (RuntimeException e) {
StringBuilder K = c.d.b.a.a.K("Exception thrown from implementation: ");
K.append(e.getClass());
str = K.toString();
StringBuilder L = c.d.b.a.a.L("Exception thrown from implementation: ");
L.append(e.getClass());
str = L.toString();
}
if (str != null && !str.isEmpty()) {
sb.append("PENDING, info=[");

View File

@ -33,9 +33,9 @@ public final class CallbackToFutureAdapter {
ResolvableFuture<Void> resolvableFuture;
SafeFuture<T> safeFuture = this.future;
if (safeFuture != null && !safeFuture.isDone()) {
StringBuilder K = a.K("The completer object was garbage collected - this future would otherwise never complete. The tag was: ");
K.append(this.tag);
safeFuture.setException(new FutureGarbageCollectedException(K.toString()));
StringBuilder L = a.L("The completer object was garbage collected - this future would otherwise never complete. The tag was: ");
L.append(this.tag);
safeFuture.setException(new FutureGarbageCollectedException(L.toString()));
}
if (!this.attemptedSetting && (resolvableFuture = this.cancellationFuture) != null) {
resolvableFuture.set(null);
@ -119,10 +119,10 @@ public final class CallbackToFutureAdapter {
if (completer == null) {
return "Completer object has been garbage collected, future will fail soon";
}
StringBuilder K = a.K("tag=[");
K.append(completer.tag);
K.append("]");
return K.toString();
StringBuilder L = a.L("tag=[");
L.append(completer.tag);
L.append("]");
return L.toString();
}
}

View File

@ -168,9 +168,9 @@ public class Easing {
case 3:
return new CubicEasing(STANDARD);
default:
StringBuilder K = a.K("transitionEasing syntax error syntax:transitionEasing=\"cubic(1.0,0.5,0.0,0.6)\" or ");
K.append(Arrays.toString(NAMED_EASING));
Log.e("ConstraintSet", K.toString());
StringBuilder L = a.L("transitionEasing syntax error syntax:transitionEasing=\"cubic(1.0,0.5,0.0,0.6)\" or ");
L.append(Arrays.toString(NAMED_EASING));
Log.e("ConstraintSet", L.toString());
return sDefault;
}
}

View File

@ -175,10 +175,10 @@ public class Oscillator {
}
public String toString() {
StringBuilder K = a.K("pos =");
K.append(Arrays.toString(this.mPosition));
K.append(" period=");
K.append(Arrays.toString(this.mPeriod));
return K.toString();
StringBuilder L = a.L("pos =");
L.append(Arrays.toString(this.mPosition));
L.append(" period=");
L.append(Arrays.toString(this.mPeriod));
return L.toString();
}
}

View File

@ -156,9 +156,9 @@ public class StopLogic extends MotionInterpolator {
}
public void debug(String str, String str2, float f) {
StringBuilder O = a.O(str2, " ===== ");
O.append(this.mType);
Log.v(str, O.toString());
StringBuilder P = a.P(str2, " ===== ");
P.append(this.mType);
Log.v(str, P.toString());
StringBuilder sb = new StringBuilder();
sb.append(str2);
sb.append(this.mBackwards ? "backwards" : "forward ");
@ -169,22 +169,22 @@ public class StopLogic extends MotionInterpolator {
Log.v(str, sb.toString());
Log.v(str, str2 + " dur " + this.mStage1Duration + " vel " + this.mStage1Velocity + " pos " + this.mStage1EndPosition);
if (this.mNumberOfStages > 1) {
StringBuilder O2 = a.O(str2, " dur ");
O2.append(this.mStage2Duration);
O2.append(" vel ");
O2.append(this.mStage2Velocity);
O2.append(" pos ");
O2.append(this.mStage2EndPosition);
Log.v(str, O2.toString());
StringBuilder P2 = a.P(str2, " dur ");
P2.append(this.mStage2Duration);
P2.append(" vel ");
P2.append(this.mStage2Velocity);
P2.append(" pos ");
P2.append(this.mStage2EndPosition);
Log.v(str, P2.toString());
}
if (this.mNumberOfStages > 2) {
StringBuilder O3 = a.O(str2, " dur ");
O3.append(this.mStage3Duration);
O3.append(" vel ");
O3.append(this.mStage3Velocity);
O3.append(" pos ");
O3.append(this.mStage3EndPosition);
Log.v(str, O3.toString());
StringBuilder P3 = a.P(str2, " dur ");
P3.append(this.mStage3Duration);
P3.append(" vel ");
P3.append(this.mStage3Velocity);
P3.append(" pos ");
P3.append(this.mStage3EndPosition);
Log.v(str, P3.toString());
}
float f2 = this.mStage1Duration;
if (f <= f2) {

View File

@ -13,18 +13,18 @@ import java.lang.reflect.Modifier;
public class Debug {
public static void dumpLayoutParams(ViewGroup.LayoutParams layoutParams, String str) {
StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1];
StringBuilder K = a.K(".(");
K.append(stackTraceElement.getFileName());
K.append(":");
K.append(stackTraceElement.getLineNumber());
K.append(") ");
K.append(str);
K.append(" ");
String sb = K.toString();
StringBuilder L = a.L(".(");
L.append(stackTraceElement.getFileName());
L.append(":");
L.append(stackTraceElement.getLineNumber());
L.append(") ");
L.append(str);
L.append(" ");
String sb = L.toString();
PrintStream printStream = System.out;
StringBuilder P = a.P(" >>>>>>>>>>>>>>>>>>. dump ", sb, " ");
P.append(layoutParams.getClass().getName());
printStream.println(P.toString());
StringBuilder Q = a.Q(" >>>>>>>>>>>>>>>>>>. dump ", sb, " ");
Q.append(layoutParams.getClass().getName());
printStream.println(Q.toString());
Field[] fields = layoutParams.getClass().getFields();
for (Field field : fields) {
try {
@ -43,22 +43,22 @@ public class Debug {
public static void dumpLayoutParams(ViewGroup viewGroup, String str) {
StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1];
StringBuilder K = a.K(".(");
K.append(stackTraceElement.getFileName());
K.append(":");
K.append(stackTraceElement.getLineNumber());
K.append(") ");
K.append(str);
K.append(" ");
String sb = K.toString();
StringBuilder L = a.L(".(");
L.append(stackTraceElement.getFileName());
L.append(":");
L.append(stackTraceElement.getLineNumber());
L.append(") ");
L.append(str);
L.append(" ");
String sb = L.toString();
int childCount = viewGroup.getChildCount();
System.out.println(str + " children " + childCount);
for (int i = 0; i < childCount; i++) {
View childAt = viewGroup.getChildAt(i);
PrintStream printStream = System.out;
StringBuilder O = a.O(sb, " ");
O.append(getName(childAt));
printStream.println(O.toString());
StringBuilder P = a.P(sb, " ");
P.append(getName(childAt));
printStream.println(P.toString());
ViewGroup.LayoutParams layoutParams = childAt.getLayoutParams();
Field[] fields = layoutParams.getClass().getFields();
for (Field field : fields) {
@ -77,18 +77,18 @@ public class Debug {
public static void dumpPoc(Object obj) {
StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1];
StringBuilder K = a.K(".(");
K.append(stackTraceElement.getFileName());
K.append(":");
K.append(stackTraceElement.getLineNumber());
K.append(")");
String sb = K.toString();
StringBuilder L = a.L(".(");
L.append(stackTraceElement.getFileName());
L.append(":");
L.append(stackTraceElement.getLineNumber());
L.append(")");
String sb = L.toString();
Class<?> cls = obj.getClass();
PrintStream printStream = System.out;
StringBuilder O = a.O(sb, "------------- ");
O.append(cls.getName());
O.append(" --------------------");
printStream.println(O.toString());
StringBuilder P = a.P(sb, "------------- ");
P.append(cls.getName());
P.append(" --------------------");
printStream.println(P.toString());
Field[] fields = cls.getFields();
for (Field field : fields) {
try {
@ -108,10 +108,10 @@ public class Debug {
}
}
PrintStream printStream2 = System.out;
StringBuilder O2 = a.O(sb, "------------- ");
O2.append(cls.getSimpleName());
O2.append(" --------------------");
printStream2.println(O2.toString());
StringBuilder P2 = a.P(sb, "------------- ");
P2.append(cls.getSimpleName());
P2.append(" --------------------");
printStream2.println(P2.toString());
}
public static String getActionType(MotionEvent motionEvent) {
@ -130,44 +130,44 @@ public class Debug {
public static String getCallFrom(int i) {
StackTraceElement stackTraceElement = new Throwable().getStackTrace()[i + 2];
StringBuilder K = a.K(".(");
K.append(stackTraceElement.getFileName());
K.append(":");
K.append(stackTraceElement.getLineNumber());
K.append(")");
return K.toString();
StringBuilder L = a.L(".(");
L.append(stackTraceElement.getFileName());
L.append(":");
L.append(stackTraceElement.getLineNumber());
L.append(")");
return L.toString();
}
public static String getLoc() {
StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1];
StringBuilder K = a.K(".(");
K.append(stackTraceElement.getFileName());
K.append(":");
K.append(stackTraceElement.getLineNumber());
K.append(") ");
K.append(stackTraceElement.getMethodName());
K.append("()");
return K.toString();
StringBuilder L = a.L(".(");
L.append(stackTraceElement.getFileName());
L.append(":");
L.append(stackTraceElement.getLineNumber());
L.append(") ");
L.append(stackTraceElement.getMethodName());
L.append("()");
return L.toString();
}
public static String getLocation() {
StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1];
StringBuilder K = a.K(".(");
K.append(stackTraceElement.getFileName());
K.append(":");
K.append(stackTraceElement.getLineNumber());
K.append(")");
return K.toString();
StringBuilder L = a.L(".(");
L.append(stackTraceElement.getFileName());
L.append(":");
L.append(stackTraceElement.getLineNumber());
L.append(")");
return L.toString();
}
public static String getLocation2() {
StackTraceElement stackTraceElement = new Throwable().getStackTrace()[2];
StringBuilder K = a.K(".(");
K.append(stackTraceElement.getFileName());
K.append(":");
K.append(stackTraceElement.getLineNumber());
K.append(")");
return K.toString();
StringBuilder L = a.L(".(");
L.append(stackTraceElement.getFileName());
L.append(":");
L.append(stackTraceElement.getLineNumber());
L.append(")");
return L.toString();
}
public static String getName(Context context, int i) {
@ -224,13 +224,13 @@ public class Debug {
String str3 = " ";
for (int i2 = 1; i2 <= min; i2++) {
StackTraceElement stackTraceElement = stackTrace[i2];
StringBuilder K = a.K(".(");
K.append(stackTrace[i2].getFileName());
K.append(":");
K.append(stackTrace[i2].getLineNumber());
K.append(") ");
K.append(stackTrace[i2].getMethodName());
String sb = K.toString();
StringBuilder L = a.L(".(");
L.append(stackTrace[i2].getFileName());
L.append(":");
L.append(stackTrace[i2].getLineNumber());
L.append(") ");
L.append(stackTrace[i2].getMethodName());
String sb = L.toString();
str3 = a.s(str3, " ");
Log.v(str, str2 + str3 + sb + str3);
}
@ -242,12 +242,12 @@ public class Debug {
String str2 = " ";
for (int i2 = 1; i2 <= min; i2++) {
StackTraceElement stackTraceElement = stackTrace[i2];
StringBuilder K = a.K(".(");
K.append(stackTrace[i2].getFileName());
K.append(":");
K.append(stackTrace[i2].getLineNumber());
K.append(") ");
String sb = K.toString();
StringBuilder L = a.L(".(");
L.append(stackTrace[i2].getFileName());
L.append(":");
L.append(stackTrace[i2].getLineNumber());
L.append(") ");
String sb = L.toString();
str2 = a.s(str2, " ");
PrintStream printStream = System.out;
printStream.println(str + str2 + sb + str2);

View File

@ -95,11 +95,11 @@ public class KeyAttributes extends Key {
case 3:
case 11:
default:
StringBuilder K = a.K("unused attribute 0x");
K.append(Integer.toHexString(index));
K.append(" ");
K.append(mAttrMap.get(index));
Log.e("KeyAttribute", K.toString());
StringBuilder L = a.L("unused attribute 0x");
L.append(Integer.toHexString(index));
L.append(" ");
L.append(mAttrMap.get(index));
Log.e("KeyAttribute", L.toString());
break;
case 4:
KeyAttributes.access$202(keyAttributes, typedArray.getFloat(index, KeyAttributes.access$200(keyAttributes)));

View File

@ -176,11 +176,11 @@ public class KeyCycle extends Key {
KeyCycle.access$1802(keyCycle, typedArray.getFloat(index, KeyCycle.access$1800(keyCycle)));
break;
default:
StringBuilder K = a.K("unused attribute 0x");
K.append(Integer.toHexString(index));
K.append(" ");
K.append(mAttrMap.get(index));
Log.e("KeyCycle", K.toString());
StringBuilder L = a.L("unused attribute 0x");
L.append(Integer.toHexString(index));
L.append(" ");
L.append(mAttrMap.get(index));
Log.e("KeyCycle", L.toString());
break;
}
}
@ -368,10 +368,10 @@ public class KeyCycle extends Key {
@Override // androidx.constraintlayout.motion.widget.Key
public void addValues(HashMap<String, SplineSet> hashMap) {
StringBuilder K = a.K("add ");
K.append(hashMap.size());
K.append(" values");
Debug.logStack("KeyCycle", K.toString(), 2);
StringBuilder L = a.L("add ");
L.append(hashMap.size());
L.append(" values");
Debug.logStack("KeyCycle", L.toString(), 2);
for (String str : hashMap.keySet()) {
SplineSet splineSet = hashMap.get(str);
str.hashCode();

View File

@ -88,9 +88,9 @@ public abstract class KeyCycleOscillator {
if (constraintAttribute.getType() == attributeType) {
return constraintAttribute;
}
StringBuilder K = a.K("ConstraintAttribute is already a ");
K.append(constraintAttribute.getType().name());
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("ConstraintAttribute is already a ");
L.append(constraintAttribute.getType().name());
throw new IllegalArgumentException(L.toString());
}
ConstraintAttribute constraintAttribute2 = new ConstraintAttribute(str, attributeType);
this.mCustomConstraints.put(str, constraintAttribute2);
@ -593,12 +593,12 @@ public abstract class KeyCycleOscillator {
Iterator<WavePoint> it = this.mWavePoints.iterator();
while (it.hasNext()) {
WavePoint next = it.next();
StringBuilder O = a.O(str, "[");
O.append(next.mPosition);
O.append(" , ");
O.append(decimalFormat.format((double) next.mValue));
O.append("] ");
str = O.toString();
StringBuilder P = a.P(str, "[");
P.append(next.mPosition);
P.append(" , ");
P.append(decimalFormat.format((double) next.mValue));
P.append("] ");
str = P.toString();
}
return str;
}

View File

@ -138,11 +138,11 @@ public class KeyPosition extends KeyPositionBase {
keyPosition.mPercentHeight = typedArray.getFloat(index, keyPosition.mPercentHeight);
break;
default:
StringBuilder K = a.K("unused attribute 0x");
K.append(Integer.toHexString(index));
K.append(" ");
K.append(mAttrMap.get(index));
Log.e("KeyPosition", K.toString());
StringBuilder L = a.L("unused attribute 0x");
L.append(Integer.toHexString(index));
L.append(" ");
L.append(mAttrMap.get(index));
Log.e("KeyPosition", L.toString());
break;
}
}

View File

@ -97,11 +97,11 @@ public class KeyTimeCycle extends Key {
case 3:
case 11:
default:
StringBuilder K = a.K("unused attribute 0x");
K.append(Integer.toHexString(index));
K.append(" ");
K.append(mAttrMap.get(index));
Log.e("KeyTimeCycle", K.toString());
StringBuilder L = a.L("unused attribute 0x");
L.append(Integer.toHexString(index));
L.append(" ");
L.append(mAttrMap.get(index));
Log.e("KeyTimeCycle", L.toString());
break;
case 4:
KeyTimeCycle.access$202(keyTimeCycle, typedArray.getFloat(index, KeyTimeCycle.access$200(keyTimeCycle)));

View File

@ -118,11 +118,11 @@ public class KeyTrigger extends Key {
KeyTrigger.access$702(keyTrigger, typedArray.getResourceId(index, KeyTrigger.access$700(keyTrigger)));
break;
}
StringBuilder K = a.K("unused attribute 0x");
K.append(Integer.toHexString(index));
K.append(" ");
K.append(mAttrMap.get(index));
Log.e("KeyTrigger", K.toString());
StringBuilder L = a.L("unused attribute 0x");
L.append(Integer.toHexString(index));
L.append(" ");
L.append(mAttrMap.get(index));
Log.e("KeyTrigger", L.toString());
}
}
}
@ -266,13 +266,13 @@ public class KeyTrigger extends Key {
try {
this.mFireNegativeCross = view.getClass().getMethod(this.mNegativeCross, new Class[0]);
} catch (NoSuchMethodException unused) {
StringBuilder K = a.K("Could not find method \"");
K.append(this.mNegativeCross);
K.append("\"on class ");
K.append(view.getClass().getSimpleName());
K.append(" ");
K.append(Debug.getName(view));
Log.e("KeyTrigger", K.toString());
StringBuilder L = a.L("Could not find method \"");
L.append(this.mNegativeCross);
L.append("\"on class ");
L.append(view.getClass().getSimpleName());
L.append(" ");
L.append(Debug.getName(view));
Log.e("KeyTrigger", L.toString());
}
}
this.mFireNegativeCross.invoke(view, new Object[0]);
@ -282,13 +282,13 @@ public class KeyTrigger extends Key {
try {
this.mFirePositiveCross = view.getClass().getMethod(this.mPositiveCross, new Class[0]);
} catch (NoSuchMethodException unused2) {
StringBuilder K2 = a.K("Could not find method \"");
K2.append(this.mPositiveCross);
K2.append("\"on class ");
K2.append(view.getClass().getSimpleName());
K2.append(" ");
K2.append(Debug.getName(view));
Log.e("KeyTrigger", K2.toString());
StringBuilder L2 = a.L("Could not find method \"");
L2.append(this.mPositiveCross);
L2.append("\"on class ");
L2.append(view.getClass().getSimpleName());
L2.append(" ");
L2.append(Debug.getName(view));
Log.e("KeyTrigger", L2.toString());
}
}
this.mFirePositiveCross.invoke(view, new Object[0]);
@ -298,26 +298,26 @@ public class KeyTrigger extends Key {
try {
this.mFireCross = view.getClass().getMethod(this.mCross, new Class[0]);
} catch (NoSuchMethodException unused3) {
StringBuilder K3 = a.K("Could not find method \"");
K3.append(this.mCross);
K3.append("\"on class ");
K3.append(view.getClass().getSimpleName());
K3.append(" ");
K3.append(Debug.getName(view));
Log.e("KeyTrigger", K3.toString());
StringBuilder L3 = a.L("Could not find method \"");
L3.append(this.mCross);
L3.append("\"on class ");
L3.append(view.getClass().getSimpleName());
L3.append(" ");
L3.append(Debug.getName(view));
Log.e("KeyTrigger", L3.toString());
}
}
try {
this.mFireCross.invoke(view, new Object[0]);
return;
} catch (Exception unused4) {
StringBuilder K4 = a.K("Exception in call \"");
K4.append(this.mCross);
K4.append("\"on class ");
K4.append(view.getClass().getSimpleName());
K4.append(" ");
K4.append(Debug.getName(view));
Log.e("KeyTrigger", K4.toString());
StringBuilder L4 = a.L("Exception in call \"");
L4.append(this.mCross);
L4.append("\"on class ");
L4.append(view.getClass().getSimpleName());
L4.append(" ");
L4.append(Debug.getName(view));
Log.e("KeyTrigger", L4.toString());
return;
}
} else {
@ -408,26 +408,26 @@ public class KeyTrigger extends Key {
try {
this.mFireNegativeCross.invoke(view, new Object[0]);
} catch (Exception unused5) {
StringBuilder K5 = a.K("Exception in call \"");
K5.append(this.mNegativeCross);
K5.append("\"on class ");
K5.append(view.getClass().getSimpleName());
K5.append(" ");
K5.append(Debug.getName(view));
Log.e("KeyTrigger", K5.toString());
StringBuilder L5 = a.L("Exception in call \"");
L5.append(this.mNegativeCross);
L5.append("\"on class ");
L5.append(view.getClass().getSimpleName());
L5.append(" ");
L5.append(Debug.getName(view));
Log.e("KeyTrigger", L5.toString());
}
if (this.mFirePositiveCross == null) {
}
try {
this.mFirePositiveCross.invoke(view, new Object[0]);
} catch (Exception unused6) {
StringBuilder K6 = a.K("Exception in call \"");
K6.append(this.mPositiveCross);
K6.append("\"on class ");
K6.append(view.getClass().getSimpleName());
K6.append(" ");
K6.append(Debug.getName(view));
Log.e("KeyTrigger", K6.toString());
StringBuilder L6 = a.L("Exception in call \"");
L6.append(this.mPositiveCross);
L6.append("\"on class ");
L6.append(view.getClass().getSimpleName());
L6.append(" ");
L6.append(Debug.getName(view));
Log.e("KeyTrigger", L6.toString());
}
if (!z4) {
}

View File

@ -174,10 +174,10 @@ public class MotionController {
private void insertKey(MotionPaths motionPaths) {
int binarySearch = Collections.binarySearch(this.mMotionPaths, motionPaths);
if (binarySearch == 0) {
StringBuilder K = a.K(" KeyPath positon \"");
K.append(motionPaths.position);
K.append("\" outside of range");
Log.e(TAG, K.toString());
StringBuilder L = a.L(" KeyPath positon \"");
L.append(motionPaths.position);
L.append("\" outside of range");
Log.e(TAG, L.toString());
}
this.mMotionPaths.add((-binarySearch) - 1, motionPaths);
}
@ -1154,11 +1154,11 @@ public class MotionController {
break;
}
if (iArr4[i15] < MotionPaths.names.length) {
String C = a.C(new StringBuilder(), MotionPaths.names[this.mInterpolateVariables[i15]], " [");
String D = a.D(new StringBuilder(), MotionPaths.names[this.mInterpolateVariables[i15]], " [");
for (int i16 = 0; i16 < size; i16++) {
StringBuilder K = a.K(C);
K.append(dArr[i16][i15]);
C = K.toString();
StringBuilder L = a.L(D);
L.append(dArr[i16][i15]);
D = L.toString();
}
}
i15++;
@ -1242,14 +1242,14 @@ public class MotionController {
}
public String toString() {
StringBuilder K = a.K(" start: x: ");
K.append(this.mStartMotionPath.f19x);
K.append(" y: ");
K.append(this.mStartMotionPath.f20y);
K.append(" end: x: ");
K.append(this.mEndMotionPath.f19x);
K.append(" y: ");
K.append(this.mEndMotionPath.f20y);
return K.toString();
StringBuilder L = a.L(" start: x: ");
L.append(this.mStartMotionPath.f19x);
L.append(" y: ");
L.append(this.mStartMotionPath.f20y);
L.append(" end: x: ");
L.append(this.mEndMotionPath.f19x);
L.append(" y: ");
L.append(this.mEndMotionPath.f20y);
return L.toString();
}
}

View File

@ -321,15 +321,15 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
float max = Math.max(f4, f6);
float min2 = f - Math.min(f3, f5);
float max2 = Math.max(f4, f6) - f2;
StringBuilder K = a.K("");
K.append(((float) ((int) (((double) ((min2 * 100.0f) / Math.abs(f5 - f3))) + 0.5d))) / 100.0f);
String sb = K.toString();
StringBuilder L = a.L("");
L.append(((float) ((int) (((double) ((min2 * 100.0f) / Math.abs(f5 - f3))) + 0.5d))) / 100.0f);
String sb = L.toString();
getTextBounds(sb, this.mTextPaint);
canvas.drawText(sb, ((min2 / 2.0f) - ((float) (this.mBounds.width() / 2))) + min, f2 - 20.0f, this.mTextPaint);
canvas.drawLine(f, f2, Math.min(f3, f5), f2, this.mPaintGraph);
StringBuilder K2 = a.K("");
K2.append(((float) ((int) (((double) ((max2 * 100.0f) / Math.abs(f6 - f4))) + 0.5d))) / 100.0f);
String sb2 = K2.toString();
StringBuilder L2 = a.L("");
L2.append(((float) ((int) (((double) ((max2 * 100.0f) / Math.abs(f6 - f4))) + 0.5d))) / 100.0f);
String sb2 = L2.toString();
getTextBounds(sb2, this.mTextPaint);
canvas.drawText(sb2, f + 5.0f, max - ((max2 / 2.0f) - ((float) (this.mBounds.height() / 2))), this.mTextPaint);
canvas.drawLine(f, f2, f, Math.max(f4, f6), this.mPaintGraph);
@ -356,24 +356,24 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
path.moveTo(f, f2);
path.lineTo(f10, f11);
float hypot2 = (float) Math.hypot((double) (f10 - f), (double) (f11 - f2));
StringBuilder K = a.K("");
K.append(((float) ((int) ((hypot2 * 100.0f) / hypot))) / 100.0f);
String sb = K.toString();
StringBuilder L = a.L("");
L.append(((float) ((int) ((hypot2 * 100.0f) / hypot))) / 100.0f);
String sb = L.toString();
getTextBounds(sb, this.mTextPaint);
canvas.drawTextOnPath(sb, path, (hypot2 / 2.0f) - ((float) (this.mBounds.width() / 2)), -20.0f, this.mTextPaint);
canvas.drawLine(f, f2, f10, f11, this.mPaintGraph);
}
private void drawPathScreenTicks(Canvas canvas, float f, float f2, int i, int i2) {
StringBuilder K = a.K("");
K.append(((float) ((int) (((double) (((f - ((float) (i / 2))) * 100.0f) / ((float) (MotionLayout.this.getWidth() - i)))) + 0.5d))) / 100.0f);
String sb = K.toString();
StringBuilder L = a.L("");
L.append(((float) ((int) (((double) (((f - ((float) (i / 2))) * 100.0f) / ((float) (MotionLayout.this.getWidth() - i)))) + 0.5d))) / 100.0f);
String sb = L.toString();
getTextBounds(sb, this.mTextPaint);
canvas.drawText(sb, ((f / 2.0f) - ((float) (this.mBounds.width() / 2))) + 0.0f, f2 - 20.0f, this.mTextPaint);
canvas.drawLine(f, f2, Math.min(0.0f, 1.0f), f2, this.mPaintGraph);
StringBuilder K2 = a.K("");
K2.append(((float) ((int) (((double) (((f2 - ((float) (i2 / 2))) * 100.0f) / ((float) (MotionLayout.this.getHeight() - i2)))) + 0.5d))) / 100.0f);
String sb2 = K2.toString();
StringBuilder L2 = a.L("");
L2.append(((float) ((int) (((double) (((f2 - ((float) (i2 / 2))) * 100.0f) / ((float) (MotionLayout.this.getHeight() - i2)))) + 0.5d))) / 100.0f);
String sb2 = L2.toString();
getTextBounds(sb2, this.mTextPaint);
canvas.drawText(sb2, f + 5.0f, 0.0f - ((f2 / 2.0f) - ((float) (this.mBounds.height() / 2))), this.mTextPaint);
canvas.drawLine(f, f2, f, Math.max(0.0f, 1.0f), this.mPaintGraph);
@ -558,34 +558,34 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
}
private void debugLayout(String str, ConstraintWidgetContainer constraintWidgetContainer) {
StringBuilder O = a.O(str, " ");
O.append(Debug.getName((View) constraintWidgetContainer.getCompanionWidget()));
String sb = O.toString();
StringBuilder P = a.P(str, " ");
P.append(Debug.getName((View) constraintWidgetContainer.getCompanionWidget()));
String sb = P.toString();
Log.v(MotionLayout.TAG, sb + " ========= " + constraintWidgetContainer);
int size = constraintWidgetContainer.getChildren().size();
for (int i = 0; i < size; i++) {
String str2 = sb + "[" + i + "] ";
ConstraintWidget constraintWidget = constraintWidgetContainer.getChildren().get(i);
StringBuilder K = a.K("");
StringBuilder L = a.L("");
String str3 = "_";
K.append(constraintWidget.mTop.mTarget != null ? ExifInterface.GPS_DIRECTION_TRUE : str3);
StringBuilder K2 = a.K(K.toString());
K2.append(constraintWidget.mBottom.mTarget != null ? "B" : str3);
StringBuilder K3 = a.K(K2.toString());
K3.append(constraintWidget.mLeft.mTarget != null ? "L" : str3);
StringBuilder K4 = a.K(K3.toString());
L.append(constraintWidget.mTop.mTarget != null ? ExifInterface.GPS_DIRECTION_TRUE : str3);
StringBuilder L2 = a.L(L.toString());
L2.append(constraintWidget.mBottom.mTarget != null ? "B" : str3);
StringBuilder L3 = a.L(L2.toString());
L3.append(constraintWidget.mLeft.mTarget != null ? "L" : str3);
StringBuilder L4 = a.L(L3.toString());
if (constraintWidget.mRight.mTarget != null) {
str3 = "R";
}
K4.append(str3);
String sb2 = K4.toString();
L4.append(str3);
String sb2 = L4.toString();
View view = (View) constraintWidget.getCompanionWidget();
String name = Debug.getName(view);
if (view instanceof TextView) {
StringBuilder O2 = a.O(name, "(");
O2.append((Object) ((TextView) view).getText());
O2.append(")");
name = O2.toString();
StringBuilder P2 = a.P(name, "(");
P2.append((Object) ((TextView) view).getText());
P2.append(")");
name = P2.toString();
}
Log.v(MotionLayout.TAG, str2 + " " + name + " " + constraintWidget + " " + sb2);
}
@ -593,35 +593,35 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
}
private void debugLayoutParam(String str, ConstraintLayout.LayoutParams layoutParams) {
StringBuilder K = a.K(" ");
K.append(layoutParams.startToStart != -1 ? "SS" : "__");
StringBuilder K2 = a.K(K.toString());
StringBuilder L = a.L(" ");
L.append(layoutParams.startToStart != -1 ? "SS" : "__");
StringBuilder L2 = a.L(L.toString());
String str2 = "|__";
K2.append(layoutParams.startToEnd != -1 ? "|SE" : str2);
StringBuilder K3 = a.K(K2.toString());
K3.append(layoutParams.endToStart != -1 ? "|ES" : str2);
StringBuilder K4 = a.K(K3.toString());
K4.append(layoutParams.endToEnd != -1 ? "|EE" : str2);
StringBuilder K5 = a.K(K4.toString());
K5.append(layoutParams.leftToLeft != -1 ? "|LL" : str2);
StringBuilder K6 = a.K(K5.toString());
K6.append(layoutParams.leftToRight != -1 ? "|LR" : str2);
StringBuilder K7 = a.K(K6.toString());
K7.append(layoutParams.rightToLeft != -1 ? "|RL" : str2);
StringBuilder K8 = a.K(K7.toString());
K8.append(layoutParams.rightToRight != -1 ? "|RR" : str2);
StringBuilder K9 = a.K(K8.toString());
K9.append(layoutParams.topToTop != -1 ? "|TT" : str2);
StringBuilder K10 = a.K(K9.toString());
K10.append(layoutParams.topToBottom != -1 ? "|TB" : str2);
StringBuilder K11 = a.K(K10.toString());
K11.append(layoutParams.bottomToTop != -1 ? "|BT" : str2);
StringBuilder K12 = a.K(K11.toString());
L2.append(layoutParams.startToEnd != -1 ? "|SE" : str2);
StringBuilder L3 = a.L(L2.toString());
L3.append(layoutParams.endToStart != -1 ? "|ES" : str2);
StringBuilder L4 = a.L(L3.toString());
L4.append(layoutParams.endToEnd != -1 ? "|EE" : str2);
StringBuilder L5 = a.L(L4.toString());
L5.append(layoutParams.leftToLeft != -1 ? "|LL" : str2);
StringBuilder L6 = a.L(L5.toString());
L6.append(layoutParams.leftToRight != -1 ? "|LR" : str2);
StringBuilder L7 = a.L(L6.toString());
L7.append(layoutParams.rightToLeft != -1 ? "|RL" : str2);
StringBuilder L8 = a.L(L7.toString());
L8.append(layoutParams.rightToRight != -1 ? "|RR" : str2);
StringBuilder L9 = a.L(L8.toString());
L9.append(layoutParams.topToTop != -1 ? "|TT" : str2);
StringBuilder L10 = a.L(L9.toString());
L10.append(layoutParams.topToBottom != -1 ? "|TB" : str2);
StringBuilder L11 = a.L(L10.toString());
L11.append(layoutParams.bottomToTop != -1 ? "|BT" : str2);
StringBuilder L12 = a.L(L11.toString());
if (layoutParams.bottomToBottom != -1) {
str2 = "|BB";
}
K12.append(str2);
String sb = K12.toString();
L12.append(str2);
String sb = L12.toString();
Log.v(MotionLayout.TAG, str + sb);
}
@ -629,50 +629,50 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
String str2;
String str3;
String str4;
StringBuilder K = a.K(" ");
StringBuilder L = a.L(" ");
String str5 = "B";
String str6 = "__";
if (constraintWidget.mTop.mTarget != null) {
StringBuilder K2 = a.K(ExifInterface.GPS_DIRECTION_TRUE);
K2.append(constraintWidget.mTop.mTarget.mType == ConstraintAnchor.Type.TOP ? ExifInterface.GPS_DIRECTION_TRUE : str5);
str2 = K2.toString();
StringBuilder L2 = a.L(ExifInterface.GPS_DIRECTION_TRUE);
L2.append(constraintWidget.mTop.mTarget.mType == ConstraintAnchor.Type.TOP ? ExifInterface.GPS_DIRECTION_TRUE : str5);
str2 = L2.toString();
} else {
str2 = str6;
}
K.append(str2);
StringBuilder K3 = a.K(K.toString());
L.append(str2);
StringBuilder L3 = a.L(L.toString());
if (constraintWidget.mBottom.mTarget != null) {
StringBuilder K4 = a.K(str5);
StringBuilder L4 = a.L(str5);
if (constraintWidget.mBottom.mTarget.mType == ConstraintAnchor.Type.TOP) {
str5 = ExifInterface.GPS_DIRECTION_TRUE;
}
K4.append(str5);
str3 = K4.toString();
L4.append(str5);
str3 = L4.toString();
} else {
str3 = str6;
}
K3.append(str3);
StringBuilder K5 = a.K(K3.toString());
L3.append(str3);
StringBuilder L5 = a.L(L3.toString());
String str7 = "R";
if (constraintWidget.mLeft.mTarget != null) {
StringBuilder K6 = a.K("L");
K6.append(constraintWidget.mLeft.mTarget.mType == ConstraintAnchor.Type.LEFT ? "L" : str7);
str4 = K6.toString();
StringBuilder L6 = a.L("L");
L6.append(constraintWidget.mLeft.mTarget.mType == ConstraintAnchor.Type.LEFT ? "L" : str7);
str4 = L6.toString();
} else {
str4 = str6;
}
K5.append(str4);
StringBuilder K7 = a.K(K5.toString());
L5.append(str4);
StringBuilder L7 = a.L(L5.toString());
if (constraintWidget.mRight.mTarget != null) {
StringBuilder K8 = a.K(str7);
StringBuilder L8 = a.L(str7);
if (constraintWidget.mRight.mTarget.mType == ConstraintAnchor.Type.LEFT) {
str7 = "L";
}
K8.append(str7);
str6 = K8.toString();
L8.append(str7);
str6 = L8.toString();
}
K7.append(str6);
String sb = K7.toString();
L7.append(str6);
String sb = L7.toString();
Log.v(MotionLayout.TAG, str + sb + " --- " + constraintWidget);
}
@ -1255,15 +1255,15 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
View childAt = getChildAt(i2);
int id2 = childAt.getId();
if (id2 == -1) {
StringBuilder P = a.P("CHECK: ", name, " ALL VIEWS SHOULD HAVE ID's ");
P.append(childAt.getClass().getName());
P.append(" does not!");
Log.w(TAG, P.toString());
StringBuilder Q = a.Q("CHECK: ", name, " ALL VIEWS SHOULD HAVE ID's ");
Q.append(childAt.getClass().getName());
Q.append(" does not!");
Log.w(TAG, Q.toString());
}
if (constraintSet.getConstraint(id2) == null) {
StringBuilder P2 = a.P("CHECK: ", name, " NO CONSTRAINTS for ");
P2.append(Debug.getName(childAt));
Log.w(TAG, P2.toString());
StringBuilder Q2 = a.Q("CHECK: ", name, " NO CONSTRAINTS for ");
Q2.append(Debug.getName(childAt));
Log.w(TAG, Q2.toString());
}
}
int[] knownIds = constraintSet.getKnownIds();
@ -1283,9 +1283,9 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
}
private void checkStructure(MotionScene.Transition transition) {
StringBuilder K = a.K("CHECK: transition = ");
K.append(transition.debugString(getContext()));
Log.v(TAG, K.toString());
StringBuilder L = a.L("CHECK: transition = ");
L.append(transition.debugString(getContext()));
Log.v(TAG, L.toString());
Log.v(TAG, "CHECK: transition.setDuration = " + transition.getDuration());
if (transition.getStartConstraintSetId() == transition.getEndConstraintSetId()) {
Log.e(TAG, "CHECK: start and end constraint set should not be the same!");
@ -1306,18 +1306,18 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
private void debugPos() {
for (int i = 0; i < getChildCount(); i++) {
View childAt = getChildAt(i);
StringBuilder K = a.K(" ");
K.append(Debug.getLocation());
K.append(" ");
K.append(Debug.getName(this));
K.append(" ");
K.append(Debug.getName(getContext(), this.mCurrentState));
K.append(" ");
K.append(Debug.getName(childAt));
K.append(childAt.getLeft());
K.append(" ");
K.append(childAt.getTop());
Log.v(TAG, K.toString());
StringBuilder L = a.L(" ");
L.append(Debug.getLocation());
L.append(" ");
L.append(Debug.getName(this));
L.append(" ");
L.append(Debug.getName(getContext(), this.mCurrentState));
L.append(" ");
L.append(Debug.getName(childAt));
L.append(childAt.getLeft());
L.append(" ");
L.append(childAt.getTop());
Log.v(TAG, L.toString());
}
}
@ -1647,14 +1647,14 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
}
Paint paint = new Paint();
paint.setTextSize(42.0f);
StringBuilder K = a.K(this.mLastFps + " fps " + Debug.getState(this, this.mBeginState) + " -> ");
K.append(Debug.getState(this, this.mEndState));
K.append(" (progress: ");
K.append(((float) ((int) (getProgress() * 1000.0f))) / 10.0f);
K.append(" ) state=");
StringBuilder L = a.L(this.mLastFps + " fps " + Debug.getState(this, this.mBeginState) + " -> ");
L.append(Debug.getState(this, this.mEndState));
L.append(" (progress: ");
L.append(((float) ((int) (getProgress() * 1000.0f))) / 10.0f);
L.append(" ) state=");
int i = this.mCurrentState;
K.append(i == -1 ? "undefined" : Debug.getState(this, i));
String sb = K.toString();
L.append(i == -1 ? "undefined" : Debug.getState(this, i));
String sb = L.toString();
paint.setColor(ViewCompat.MEASURED_STATE_MASK);
canvas.drawText(sb, 11.0f, (float) (getHeight() - 29), paint);
paint.setColor(-7864184);
@ -1891,7 +1891,7 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar
this.lastY = y2;
return;
}
a.g0("WARNING could not find view id ", viewById == null ? a.j("", i) : viewById.getContext().getResources().getResourceName(i), TAG);
a.h0("WARNING could not find view id ", viewById == null ? a.j("", i) : viewById.getContext().getResources().getResourceName(i), TAG);
}
public ConstraintSet getConstraintSet(int i) {

View File

@ -147,9 +147,9 @@ public class MotionScene {
motionLayout2 = motionLayout.findViewById(i2);
}
if (motionLayout2 == null) {
StringBuilder K = a.K("OnClick could not find id ");
K.append(this.mTargetId);
Log.e(MotionScene.TAG, K.toString());
StringBuilder L = a.L("OnClick could not find id ");
L.append(this.mTargetId);
Log.e(MotionScene.TAG, L.toString());
return;
}
int access$100 = Transition.access$100(transition);
@ -242,9 +242,9 @@ public class MotionScene {
if (i != -1) {
View findViewById = motionLayout.findViewById(i);
if (findViewById == null) {
StringBuilder K = a.K(" (*) could not find id ");
K.append(this.mTargetId);
Log.e(MotionScene.TAG, K.toString());
StringBuilder L = a.L(" (*) could not find id ");
L.append(this.mTargetId);
Log.e(MotionScene.TAG, L.toString());
return;
}
findViewById.setOnClickListener(null);
@ -437,9 +437,9 @@ public class MotionScene {
if (this.mConstraintSetEnd == -1) {
return a.s(resourceEntryName, " -> null");
}
StringBuilder O = a.O(resourceEntryName, " -> ");
O.append(context.getResources().getResourceEntryName(this.mConstraintSetEnd));
return O.toString();
StringBuilder P = a.P(resourceEntryName, " -> ");
P.append(context.getResources().getResourceEntryName(this.mConstraintSetEnd));
return P.toString();
}
public int getAutoTransition() {
@ -789,9 +789,9 @@ public class MotionScene {
ConstraintSet constraintSet = this.mConstraintSetMap.get(i);
ConstraintSet constraintSet2 = this.mConstraintSetMap.get(i2);
if (constraintSet2 == null) {
StringBuilder K = a.K("ERROR! invalid deriveConstraintsFrom: @id/");
K.append(Debug.getName(this.mMotionLayout.getContext(), i2));
Log.e(TAG, K.toString());
StringBuilder L = a.L("ERROR! invalid deriveConstraintsFrom: @id/");
L.append(Debug.getName(this.mMotionLayout.getContext(), i2));
Log.e(TAG, L.toString());
return;
}
constraintSet.readFallback(constraintSet2);
@ -956,9 +956,9 @@ public class MotionScene {
PrintStream printStream = System.out;
printStream.println("id " + i);
PrintStream printStream2 = System.out;
StringBuilder K = a.K("size ");
K.append(this.mConstraintSetMap.size());
printStream2.println(K.toString());
StringBuilder L = a.L("size ");
L.append(this.mConstraintSetMap.size());
printStream2.println(L.toString());
}
StateSet stateSet = this.mStateSet;
if (!(stateSet == null || (stateGetConstraintID = stateSet.stateGetConstraintID(i, i2, i3)) == -1)) {
@ -967,10 +967,10 @@ public class MotionScene {
if (this.mConstraintSetMap.get(i) != null) {
return this.mConstraintSetMap.get(i);
}
StringBuilder K2 = a.K("Warning could not find ConstraintSet id/");
K2.append(Debug.getName(this.mMotionLayout.getContext(), i));
K2.append(" In MotionScene");
Log.e(TAG, K2.toString());
StringBuilder L2 = a.L("Warning could not find ConstraintSet id/");
L2.append(Debug.getName(this.mMotionLayout.getContext(), i));
L2.append(" In MotionScene");
Log.e(TAG, L2.toString());
SparseArray<ConstraintSet> sparseArray = this.mConstraintSetMap;
return sparseArray.get(sparseArray.keyAt(0));
}
@ -980,9 +980,9 @@ public class MotionScene {
PrintStream printStream = System.out;
printStream.println("id " + str);
PrintStream printStream2 = System.out;
StringBuilder K = a.K("size ");
K.append(this.mConstraintSetMap.size());
printStream2.println(K.toString());
StringBuilder L = a.L("size ");
L.append(this.mConstraintSetMap.size());
printStream2.println(L.toString());
}
for (int i = 0; i < this.mConstraintSetMap.size(); i++) {
int keyAt = this.mConstraintSetMap.keyAt(i);

View File

@ -454,12 +454,12 @@ public abstract class SplineSet {
String str = this.mType;
DecimalFormat decimalFormat = new DecimalFormat("##.##");
for (int i = 0; i < this.count; i++) {
StringBuilder O = a.O(str, "[");
O.append(this.mTimePoints[i]);
O.append(" , ");
O.append(decimalFormat.format((double) this.mValues[i]));
O.append("] ");
str = O.toString();
StringBuilder P = a.P(str, "[");
P.append(this.mTimePoints[i]);
P.append(" , ");
P.append(decimalFormat.format((double) this.mValues[i]));
P.append("] ");
str = P.toString();
}
return str;
}

View File

@ -502,9 +502,9 @@ public abstract class TimeCycleSplineSet {
public void setup(int i) {
int i2 = this.count;
if (i2 == 0) {
StringBuilder K = a.K("Error no points added to ");
K.append(this.mType);
Log.e(TAG, K.toString());
StringBuilder L = a.L("Error no points added to ");
L.append(this.mType);
Log.e(TAG, L.toString());
return;
}
Sort.doubleQuickSort(this.mTimePoints, this.mValues, 0, i2 - 1);
@ -550,12 +550,12 @@ public abstract class TimeCycleSplineSet {
String str = this.mType;
DecimalFormat decimalFormat = new DecimalFormat("##.##");
for (int i = 0; i < this.count; i++) {
StringBuilder O = a.O(str, "[");
O.append(this.mTimePoints[i]);
O.append(" , ");
O.append(decimalFormat.format(this.mValues[i]));
O.append("] ");
str = O.toString();
StringBuilder P = a.P(str, "[");
P.append(this.mTimePoints[i]);
P.append(" , ");
P.append(decimalFormat.format(this.mValues[i]));
P.append("] ");
str = P.toString();
}
return str;
}

View File

@ -385,9 +385,9 @@ public class TouchResponse {
if (i != -1) {
view = this.mMotionLayout.findViewById(i);
if (view == null) {
StringBuilder K = a.K("cannot find TouchAnchorId @id/");
K.append(Debug.getName(this.mMotionLayout.getContext(), this.mTouchAnchorId));
Log.e(TAG, K.toString());
StringBuilder L = a.L("cannot find TouchAnchorId @id/");
L.append(Debug.getName(this.mMotionLayout.getContext(), this.mTouchAnchorId));
Log.e(TAG, L.toString());
}
} else {
view = null;

View File

@ -493,12 +493,12 @@ public class ArrayLinkedVariables implements ArrayRow.ArrayRowVariables {
String str = "";
int i2 = 0;
while (i != -1 && i2 < this.currentSize) {
StringBuilder K = a.K(a.s(str, " -> "));
K.append(this.mArrayValues[i]);
K.append(" : ");
StringBuilder K2 = a.K(K.toString());
K2.append(this.mCache.mIndexedVariables[this.mArrayIndices[i]]);
str = K2.toString();
StringBuilder L = a.L(a.s(str, " -> "));
L.append(this.mArrayValues[i]);
L.append(" : ");
StringBuilder L2 = a.L(L.toString());
L2.append(this.mCache.mIndexedVariables[this.mArrayIndices[i]]);
str = L2.toString();
i = this.mArrayNextIndices[i];
i2++;
}

View File

@ -441,15 +441,15 @@ public class ArrayRow implements LinearSystem.Row {
if (this.variable == null) {
str = "0";
} else {
StringBuilder K = a.K("");
K.append(this.variable);
str = K.toString();
StringBuilder L = a.L("");
L.append(this.variable);
str = L.toString();
}
String s2 = a.s(str, " = ");
if (this.constantValue != 0.0f) {
StringBuilder K2 = a.K(s2);
K2.append(this.constantValue);
s2 = K2.toString();
StringBuilder L2 = a.L(s2);
L2.append(this.constantValue);
s2 = L2.toString();
z2 = true;
} else {
z2 = false;

View File

@ -219,21 +219,21 @@ public class LinearSystem {
displaySolverVariables();
String str = "";
for (int i = 0; i < this.mNumRows; i++) {
StringBuilder K = a.K(str);
K.append(this.mRows[i]);
str = a.s(K.toString(), "\n");
StringBuilder L = a.L(str);
L.append(this.mRows[i]);
str = a.s(L.toString(), "\n");
}
StringBuilder K2 = a.K(str);
K2.append(this.mGoal);
K2.append("\n");
System.out.println(K2.toString());
StringBuilder L2 = a.L(str);
L2.append(this.mGoal);
L2.append("\n");
System.out.println(L2.toString());
}
private void displaySolverVariables() {
StringBuilder K = a.K("Display Rows (");
K.append(this.mNumRows);
K.append("x");
System.out.println(a.w(K, this.mNumColumns, ")\n"));
StringBuilder L = a.L("Display Rows (");
L.append(this.mNumRows);
L.append("x");
System.out.println(a.w(L, this.mNumColumns, ")\n"));
}
private int enforceBFS(Row row) throws Exception {
@ -812,7 +812,7 @@ public class LinearSystem {
public void displayReadableRows() {
displaySolverVariables();
String w = a.w(a.K(" num vars "), this.mVariablesID, "\n");
String w = a.w(a.L(" num vars "), this.mVariablesID, "\n");
for (int i = 0; i < this.mVariablesID + 1; i++) {
SolverVariable solverVariable = this.mCache.mIndexedVariables[i];
if (solverVariable != null && solverVariable.isFinalValue) {
@ -829,15 +829,15 @@ public class LinearSystem {
}
String s3 = a.s(s2, "\n\n # ");
for (int i3 = 0; i3 < this.mNumRows; i3++) {
StringBuilder K = a.K(s3);
K.append(this.mRows[i3].toReadableString());
s3 = a.s(K.toString(), "\n # ");
StringBuilder L = a.L(s3);
L.append(this.mRows[i3].toReadableString());
s3 = a.s(L.toString(), "\n # ");
}
if (this.mGoal != null) {
StringBuilder O = a.O(s3, "Goal: ");
O.append(this.mGoal);
O.append("\n");
s3 = O.toString();
StringBuilder P = a.P(s3, "Goal: ");
P.append(this.mGoal);
P.append("\n");
s3 = P.toString();
}
System.out.println(s3);
}
@ -858,28 +858,28 @@ public class LinearSystem {
}
}
PrintStream printStream = System.out;
StringBuilder K = a.K("Linear System -> Table size: ");
K.append(this.TABLE_SIZE);
K.append(" (");
StringBuilder L = a.L("Linear System -> Table size: ");
L.append(this.TABLE_SIZE);
L.append(" (");
int i5 = this.TABLE_SIZE;
K.append(getDisplaySize(i5 * i5));
K.append(") -- row sizes: ");
K.append(getDisplaySize(i));
K.append(", actual size: ");
K.append(getDisplaySize(i3));
K.append(" rows: ");
K.append(this.mNumRows);
K.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN);
K.append(this.mMaxRows);
K.append(" cols: ");
K.append(this.mNumColumns);
K.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN);
K.append(this.mMaxColumns);
K.append(" ");
K.append(0);
K.append(" occupied cells, ");
K.append(getDisplaySize(0));
printStream.println(K.toString());
L.append(getDisplaySize(i5 * i5));
L.append(") -- row sizes: ");
L.append(getDisplaySize(i));
L.append(", actual size: ");
L.append(getDisplaySize(i3));
L.append(" rows: ");
L.append(this.mNumRows);
L.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN);
L.append(this.mMaxRows);
L.append(" cols: ");
L.append(this.mNumColumns);
L.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN);
L.append(this.mMaxColumns);
L.append(" ");
L.append(0);
L.append(" occupied cells, ");
L.append(getDisplaySize(0));
printStream.println(L.toString());
}
public void displayVariablesReadableRows() {
@ -887,15 +887,15 @@ public class LinearSystem {
String str = "";
for (int i = 0; i < this.mNumRows; i++) {
if (this.mRows[i].variable.mType == SolverVariable.Type.UNRESTRICTED) {
StringBuilder K = a.K(str);
K.append(this.mRows[i].toReadableString());
str = a.s(K.toString(), "\n");
StringBuilder L = a.L(str);
L.append(this.mRows[i].toReadableString());
str = a.s(L.toString(), "\n");
}
}
StringBuilder K2 = a.K(str);
K2.append(this.mGoal);
K2.append("\n");
System.out.println(K2.toString());
StringBuilder L2 = a.L(str);
L2.append(this.mGoal);
L2.append("\n");
System.out.println(L2.toString());
}
public void fillMetrics(Metrics metrics) {

View File

@ -83,23 +83,23 @@ public class Metrics {
}
public String toString() {
StringBuilder K = a.K("\n*** Metrics ***\nmeasures: ");
K.append(this.measures);
K.append("\nmeasuresWrap: ");
K.append(this.measuresWrap);
K.append("\nmeasuresWrapInfeasible: ");
K.append(this.measuresWrapInfeasible);
K.append("\ndetermineGroups: ");
K.append(this.determineGroups);
K.append("\ninfeasibleDetermineGroups: ");
K.append(this.infeasibleDetermineGroups);
K.append("\ngraphOptimizer: ");
K.append(this.graphOptimizer);
K.append("\nwidgets: ");
K.append(this.widgets);
K.append("\ngraphSolved: ");
K.append(this.graphSolved);
K.append("\nlinearSolved: ");
return a.y(K, this.linearSolved, "\n");
StringBuilder L = a.L("\n*** Metrics ***\nmeasures: ");
L.append(this.measures);
L.append("\nmeasuresWrap: ");
L.append(this.measuresWrap);
L.append("\nmeasuresWrapInfeasible: ");
L.append(this.measuresWrapInfeasible);
L.append("\ndetermineGroups: ");
L.append(this.determineGroups);
L.append("\ninfeasibleDetermineGroups: ");
L.append(this.infeasibleDetermineGroups);
L.append("\ngraphOptimizer: ");
L.append(this.graphOptimizer);
L.append("\nwidgets: ");
L.append(this.widgets);
L.append("\ngraphSolved: ");
L.append(this.graphSolved);
L.append("\nlinearSolved: ");
return a.y(L, this.linearSolved, "\n");
}
}

View File

@ -132,15 +132,15 @@ public class PriorityGoalRow extends ArrayRow {
String str = "[ ";
if (this.variable != null) {
for (int i = 0; i < 9; i++) {
StringBuilder K = a.K(str);
K.append(this.variable.goalStrengthVector[i]);
K.append(" ");
str = K.toString();
StringBuilder L = a.L(str);
L.append(this.variable.goalStrengthVector[i]);
L.append(" ");
str = L.toString();
}
}
StringBuilder O = a.O(str, "] ");
O.append(this.variable);
return O.toString();
StringBuilder P = a.P(str, "] ");
P.append(this.variable);
return P.toString();
}
}
@ -251,10 +251,10 @@ public class PriorityGoalRow extends ArrayRow {
@Override // androidx.constraintlayout.solver.ArrayRow
public String toString() {
StringBuilder O = a.O("", " goal -> (");
O.append(this.constantValue);
O.append(") : ");
String sb = O.toString();
StringBuilder P = a.P("", " goal -> (");
P.append(this.constantValue);
P.append(") : ");
String sb = P.toString();
for (int i = 0; i < this.numGoals; i++) {
this.accessor.init(this.arrayGoals[i]);
sb = sb + this.accessor + " ";

View File

@ -1,7 +1,7 @@
package androidx.constraintlayout.solver;
import androidx.exifinterface.media.ExifInterface;
import c.a.r.n0.c.e;
import c.a.q.n0.c.e;
import c.d.b.a.a;
import java.util.Arrays;
import java.util.HashSet;
@ -119,41 +119,41 @@ public class SolverVariable {
private static String getUniqueName(Type type, String str) {
if (str != null) {
StringBuilder K = a.K(str);
K.append(uniqueErrorId);
return K.toString();
StringBuilder L = a.L(str);
L.append(uniqueErrorId);
return L.toString();
}
int ordinal = type.ordinal();
if (ordinal == 0) {
StringBuilder K2 = a.K("U");
StringBuilder L2 = a.L("U");
int i = uniqueUnrestrictedId + 1;
uniqueUnrestrictedId = i;
K2.append(i);
return K2.toString();
L2.append(i);
return L2.toString();
} else if (ordinal == 1) {
StringBuilder K3 = a.K("C");
StringBuilder L3 = a.L("C");
int i2 = uniqueConstantId + 1;
uniqueConstantId = i2;
K3.append(i2);
return K3.toString();
L3.append(i2);
return L3.toString();
} else if (ordinal == 2) {
StringBuilder K4 = a.K(ExifInterface.LATITUDE_SOUTH);
StringBuilder L4 = a.L(ExifInterface.LATITUDE_SOUTH);
int i3 = uniqueSlackId + 1;
uniqueSlackId = i3;
K4.append(i3);
return K4.toString();
L4.append(i3);
return L4.toString();
} else if (ordinal == 3) {
StringBuilder K5 = a.K(e.a);
StringBuilder L5 = a.L(e.a);
int i4 = uniqueErrorId + 1;
uniqueErrorId = i4;
K5.append(i4);
return K5.toString();
L5.append(i4);
return L5.toString();
} else if (ordinal == 4) {
StringBuilder K6 = a.K(ExifInterface.GPS_MEASUREMENT_INTERRUPTED);
StringBuilder L6 = a.L(ExifInterface.GPS_MEASUREMENT_INTERRUPTED);
int i5 = uniqueId + 1;
uniqueId = i5;
K6.append(i5);
return K6.toString();
L6.append(i5);
return L6.toString();
} else {
throw new AssertionError(type.name());
}
@ -275,9 +275,9 @@ public class SolverVariable {
boolean z2 = false;
boolean z3 = true;
while (i < this.strengthVector.length) {
StringBuilder K = a.K(str);
K.append(this.strengthVector[i]);
String sb = K.toString();
StringBuilder L = a.L(str);
L.append(this.strengthVector[i]);
String sb = L.toString();
float[] fArr = this.strengthVector;
if (fArr[i] > 0.0f) {
z2 = false;
@ -298,13 +298,13 @@ public class SolverVariable {
public String toString() {
if (this.mName != null) {
StringBuilder K = a.K("");
K.append(this.mName);
return K.toString();
StringBuilder L = a.L("");
L.append(this.mName);
return L.toString();
}
StringBuilder K2 = a.K("");
K2.append(this.f21id);
return K2.toString();
StringBuilder L2 = a.L("");
L2.append(this.f21id);
return L2.toString();
}
public final void updateReferencesWithNewDefinition(LinearSystem linearSystem, ArrayRow arrayRow) {

View File

@ -65,9 +65,9 @@ public class SolverVariableValues implements ArrayRow.ArrayRowVariables {
int i2 = this.keys[i];
boolean z2 = false;
while (!z2) {
StringBuilder O = a.O(str, " ");
O.append(this.variables[i2]);
str = O.toString();
StringBuilder P = a.P(str, " ");
P.append(this.variables[i2]);
str = P.toString();
int[] iArr = this.nextKeys;
if (iArr[i2] != -1) {
i2 = iArr[i2];
@ -406,17 +406,17 @@ public class SolverVariableValues implements ArrayRow.ArrayRowVariables {
int indexOf = indexOf(variable);
String s2 = a.s(str4, "[p: ");
if (this.previous[indexOf] != -1) {
StringBuilder K = a.K(s2);
K.append(this.mCache.mIndexedVariables[this.variables[this.previous[indexOf]]]);
str = K.toString();
StringBuilder L = a.L(s2);
L.append(this.mCache.mIndexedVariables[this.variables[this.previous[indexOf]]]);
str = L.toString();
} else {
str = a.s(s2, "none");
}
String s3 = a.s(str, ", n: ");
if (this.next[indexOf] != -1) {
StringBuilder K2 = a.K(s3);
K2.append(this.mCache.mIndexedVariables[this.variables[this.next[indexOf]]]);
str2 = K2.toString();
StringBuilder L2 = a.L(s3);
L2.append(this.mCache.mIndexedVariables[this.variables[this.next[indexOf]]]);
str2 = L2.toString();
} else {
str2 = a.s(s3, "none");
}

View File

@ -131,9 +131,9 @@ public class ConstraintReference implements Reference {
@Override // java.lang.Throwable, java.lang.Object
public String toString() {
StringBuilder K = a.K("IncorrectConstraintException: ");
K.append(this.mErrors.toString());
return K.toString();
StringBuilder L = a.L("IncorrectConstraintException: ");
L.append(this.mErrors.toString());
return L.toString();
}
}

View File

@ -105,10 +105,10 @@ public class State {
}
private String createHelperKey() {
StringBuilder K = a.K("__HELPER_KEY_");
StringBuilder L = a.L("__HELPER_KEY_");
int i = this.numHelpers;
this.numHelpers = i + 1;
return a.w(K, i, "__");
return a.w(L, i, "__");
}
public void apply(ConstraintWidgetContainer constraintWidgetContainer) {

View File

@ -252,18 +252,18 @@ public class Barrier extends HelperWidget {
@Override // androidx.constraintlayout.solver.widgets.ConstraintWidget
public String toString() {
StringBuilder K = a.K("[Barrier] ");
K.append(getDebugName());
K.append(" {");
String sb = K.toString();
StringBuilder L = a.L("[Barrier] ");
L.append(getDebugName());
L.append(" {");
String sb = L.toString();
for (int i = 0; i < this.mWidgetsCount; i++) {
ConstraintWidget constraintWidget = this.mWidgets[i];
if (i > 0) {
sb = a.s(sb, ", ");
}
StringBuilder K2 = a.K(sb);
K2.append(constraintWidget.getDebugName());
sb = K2.toString();
StringBuilder L2 = a.L(sb);
L2.append(constraintWidget.getDebugName());
sb = L2.toString();
}
return a.s(sb, "}");
}

View File

@ -3058,9 +3058,9 @@ public class ConstraintWidget {
public String toString() {
StringBuilder sb = new StringBuilder();
String str = "";
sb.append(this.mType != null ? a.C(a.K("type: "), this.mType, " ") : str);
sb.append(this.mType != null ? a.D(a.L("type: "), this.mType, " ") : str);
if (this.mDebugName != null) {
str = a.C(a.K("id: "), this.mDebugName, " ");
str = a.D(a.L("id: "), this.mDebugName, " ");
}
sb.append(str);
sb.append("(");

View File

@ -173,9 +173,9 @@ public class ChainRun extends WidgetRun {
}
public String toString() {
StringBuilder K = a.K("ChainRun ");
K.append(this.orientation == 0 ? "horizontal : " : "vertical : ");
String sb = K.toString();
StringBuilder L = a.L("ChainRun ");
L.append(this.orientation == 0 ? "horizontal : " : "vertical : ");
String sb = L.toString();
Iterator<WidgetRun> it = this.widgets.iterator();
while (it.hasNext()) {
String s2 = a.s(sb, "<");

View File

@ -298,9 +298,9 @@ public class DependencyGraph {
private String generateChainDisplayGraph(ChainRun chainRun, String str) {
int i = chainRun.orientation;
StringBuilder K = a.K("cluster_");
K.append(chainRun.widget.getDebugName());
String sb = K.toString();
StringBuilder L = a.L("cluster_");
L.append(chainRun.widget.getDebugName());
String sb = L.toString();
String t = a.t("subgraph ", i == 0 ? a.s(sb, "_h") : a.s(sb, "_v"), " {\n");
Iterator<WidgetRun> it = chainRun.widgets.iterator();
String str2 = "";
@ -320,9 +320,9 @@ public class DependencyGraph {
if (!(widgetRun instanceof HelperReferences) && dependencyNode.dependencies.isEmpty() && (dependencyNode2.dependencies.isEmpty() && dependencyNode.targets.isEmpty()) && dependencyNode2.targets.isEmpty()) {
return str;
}
StringBuilder K = a.K(str);
K.append(nodeDefinition(widgetRun));
String sb = K.toString();
StringBuilder L = a.L(str);
L.append(nodeDefinition(widgetRun));
String sb = L.toString();
boolean isCenteredConnection = isCenteredConnection(dependencyNode, dependencyNode2);
String generateDisplayNode = generateDisplayNode(dependencyNode2, isCenteredConnection, generateDisplayNode(dependencyNode, isCenteredConnection, sb));
boolean z3 = widgetRun instanceof VerticalWidgetRun;
@ -333,19 +333,19 @@ public class DependencyGraph {
ConstraintWidget.DimensionBehaviour horizontalDimensionBehaviour = widgetRun.widget.getHorizontalDimensionBehaviour();
if (horizontalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.FIXED || horizontalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.WRAP_CONTENT) {
if (!dependencyNode.targets.isEmpty() && dependencyNode2.targets.isEmpty()) {
StringBuilder K2 = a.K("\n");
K2.append(dependencyNode2.name());
K2.append(" -> ");
K2.append(dependencyNode.name());
K2.append("\n");
generateDisplayNode = a.s(generateDisplayNode, K2.toString());
StringBuilder L2 = a.L("\n");
L2.append(dependencyNode2.name());
L2.append(" -> ");
L2.append(dependencyNode.name());
L2.append("\n");
generateDisplayNode = a.s(generateDisplayNode, L2.toString());
} else if (dependencyNode.targets.isEmpty() && !dependencyNode2.targets.isEmpty()) {
StringBuilder K3 = a.K("\n");
K3.append(dependencyNode.name());
K3.append(" -> ");
K3.append(dependencyNode2.name());
K3.append("\n");
generateDisplayNode = a.s(generateDisplayNode, K3.toString());
StringBuilder L3 = a.L("\n");
L3.append(dependencyNode.name());
L3.append(" -> ");
L3.append(dependencyNode2.name());
L3.append("\n");
generateDisplayNode = a.s(generateDisplayNode, L3.toString());
}
} else if (horizontalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.MATCH_CONSTRAINT && widgetRun.widget.getDimensionRatio() > 0.0f) {
widgetRun.widget.getDebugName();
@ -354,19 +354,19 @@ public class DependencyGraph {
ConstraintWidget.DimensionBehaviour verticalDimensionBehaviour = widgetRun.widget.getVerticalDimensionBehaviour();
if (verticalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.FIXED || verticalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.WRAP_CONTENT) {
if (!dependencyNode.targets.isEmpty() && dependencyNode2.targets.isEmpty()) {
StringBuilder K4 = a.K("\n");
K4.append(dependencyNode2.name());
K4.append(" -> ");
K4.append(dependencyNode.name());
K4.append("\n");
generateDisplayNode = a.s(generateDisplayNode, K4.toString());
StringBuilder L4 = a.L("\n");
L4.append(dependencyNode2.name());
L4.append(" -> ");
L4.append(dependencyNode.name());
L4.append("\n");
generateDisplayNode = a.s(generateDisplayNode, L4.toString());
} else if (dependencyNode.targets.isEmpty() && !dependencyNode2.targets.isEmpty()) {
StringBuilder K5 = a.K("\n");
K5.append(dependencyNode.name());
K5.append(" -> ");
K5.append(dependencyNode2.name());
K5.append("\n");
generateDisplayNode = a.s(generateDisplayNode, K5.toString());
StringBuilder L5 = a.L("\n");
L5.append(dependencyNode.name());
L5.append(" -> ");
L5.append(dependencyNode2.name());
L5.append("\n");
generateDisplayNode = a.s(generateDisplayNode, L5.toString());
}
} else if (verticalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.MATCH_CONSTRAINT && widgetRun.widget.getDimensionRatio() > 0.0f) {
widgetRun.widget.getDebugName();
@ -377,15 +377,15 @@ public class DependencyGraph {
private String generateDisplayNode(DependencyNode dependencyNode, boolean z2, String str) {
for (DependencyNode dependencyNode2 : dependencyNode.targets) {
StringBuilder K = a.K("\n");
K.append(dependencyNode.name());
StringBuilder O = a.O(K.toString(), " -> ");
O.append(dependencyNode2.name());
String sb = O.toString();
StringBuilder L = a.L("\n");
L.append(dependencyNode.name());
StringBuilder P = a.P(L.toString(), " -> ");
P.append(dependencyNode2.name());
String sb = P.toString();
if (dependencyNode.margin > 0 || z2 || (dependencyNode.run instanceof HelperReferences)) {
String s2 = a.s(sb, "[");
if (dependencyNode.margin > 0) {
s2 = a.w(a.O(s2, "label=\""), dependencyNode.margin, "\"");
s2 = a.w(a.P(s2, "label=\""), dependencyNode.margin, "\"");
if (z2) {
s2 = a.s(s2, ",");
}
@ -468,10 +468,10 @@ public class DependencyGraph {
s5 = a.s(s5, "style=\"dashed\"");
}
if (runGroup != null) {
StringBuilder K = a.K(" [");
K.append(runGroup.groupIndex + 1);
K.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN);
str2 = a.w(K, RunGroup.index, "]");
StringBuilder L = a.L(" [");
L.append(runGroup.groupIndex + 1);
L.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN);
str2 = a.w(L, RunGroup.index, "]");
} else {
str2 = "";
}

View File

@ -51,9 +51,9 @@ public class DependencyNode implements Dependency {
public String name() {
String debugName = this.run.widget.getDebugName();
Type type = this.type;
StringBuilder O = a.O((type == Type.LEFT || type == Type.RIGHT) ? a.s(debugName, "_HORIZONTAL") : a.s(debugName, "_VERTICAL"), ":");
O.append(this.type.name());
return O.toString();
StringBuilder P = a.P((type == Type.LEFT || type == Type.RIGHT) ? a.s(debugName, "_HORIZONTAL") : a.s(debugName, "_VERTICAL"), ":");
P.append(this.type.name());
return P.toString();
}
public void resolve(int i) {

View File

@ -257,9 +257,9 @@ public class HorizontalWidgetRun extends WidgetRun {
}
public String toString() {
StringBuilder K = a.K("HorizontalRun ");
K.append(this.widget.getDebugName());
return K.toString();
StringBuilder L = a.L("HorizontalRun ");
L.append(this.widget.getDebugName());
return L.toString();
}
/* JADX WARNING: Code restructure failed: missing block: B:103:0x02ba, code lost:

View File

@ -283,9 +283,9 @@ public class VerticalWidgetRun extends WidgetRun {
}
public String toString() {
StringBuilder K = a.K("VerticalRun ");
K.append(this.widget.getDebugName());
return K.toString();
StringBuilder L = a.L("VerticalRun ");
L.append(this.widget.getDebugName());
return L.toString();
}
@Override // androidx.constraintlayout.solver.widgets.analyzer.WidgetRun, androidx.constraintlayout.solver.widgets.analyzer.Dependency

View File

@ -203,9 +203,9 @@ public class WidgetGroup {
String w = a.w(sb, this.f24id, "] <");
Iterator<ConstraintWidget> it = this.widgets.iterator();
while (it.hasNext()) {
StringBuilder O = a.O(w, " ");
O.append(it.next().getDebugName());
w = O.toString();
StringBuilder P = a.P(w, " ");
P.append(it.next().getDebugName());
w = P.toString();
}
return a.s(w, " >");
}

View File

@ -213,14 +213,14 @@ public class ConstraintAttribute {
sb.append(s2);
Log.e(TAG, sb.toString());
} catch (IllegalAccessException e2) {
StringBuilder P = a.P(" Custom Attribute \"", str, "\" not found on ");
P.append(cls.getName());
Log.e(TAG, P.toString());
StringBuilder Q = a.Q(" Custom Attribute \"", str, "\" not found on ");
Q.append(cls.getName());
Log.e(TAG, Q.toString());
e2.printStackTrace();
} catch (InvocationTargetException e3) {
StringBuilder P2 = a.P(" Custom Attribute \"", str, "\" not found on ");
P2.append(cls.getName());
Log.e(TAG, P2.toString());
StringBuilder Q2 = a.Q(" Custom Attribute \"", str, "\" not found on ");
Q2.append(cls.getName());
Log.e(TAG, Q2.toString());
e3.printStackTrace();
}
}
@ -329,9 +329,9 @@ public class ConstraintAttribute {
*/
public void setInterpolatedValue(View view, float[] fArr) {
Class<?> cls = view.getClass();
StringBuilder K = a.K("set");
K.append(this.mName);
String sb = K.toString();
StringBuilder L = a.L("set");
L.append(this.mName);
String sb = L.toString();
try {
boolean z2 = true;
switch (this.mType.ordinal()) {
@ -370,16 +370,16 @@ public class ConstraintAttribute {
return;
}
} catch (NoSuchMethodException e) {
StringBuilder P = a.P("no method ", sb, "on View \"");
P.append(Debug.getName(view));
P.append("\"");
Log.e(TAG, P.toString());
StringBuilder Q = a.Q("no method ", sb, "on View \"");
Q.append(Debug.getName(view));
Q.append("\"");
Log.e(TAG, Q.toString());
e.printStackTrace();
} catch (IllegalAccessException e2) {
StringBuilder P2 = a.P("cannot access method ", sb, "on View \"");
P2.append(Debug.getName(view));
P2.append("\"");
Log.e(TAG, P2.toString());
StringBuilder Q2 = a.Q("cannot access method ", sb, "on View \"");
Q2.append(Debug.getName(view));
Q2.append("\"");
Log.e(TAG, Q2.toString());
e2.printStackTrace();
} catch (InvocationTargetException e3) {
e3.printStackTrace();

View File

@ -109,10 +109,10 @@ public abstract class ConstraintHelper extends View {
ViewGroup.LayoutParams layoutParams = childAt.getLayoutParams();
if ((layoutParams instanceof ConstraintLayout.LayoutParams) && trim.equals(((ConstraintLayout.LayoutParams) layoutParams).constraintTag)) {
if (childAt.getId() == -1) {
StringBuilder K = a.K("to use ConstraintTag view ");
K.append(childAt.getClass().getSimpleName());
K.append(" must have an ID");
Log.w("ConstraintHelper", K.toString());
StringBuilder L = a.L("to use ConstraintTag view ");
L.append(childAt.getClass().getSimpleName());
L.append(" must have an ID");
Log.w("ConstraintHelper", L.toString());
} else {
addRscID(childAt.getId());
}

View File

@ -181,7 +181,7 @@ public class ConstraintProperties {
layoutParams2.leftToRight = i2;
layoutParams2.leftToLeft = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("Left to "), sideToString(i3), " undefined"));
throw new IllegalArgumentException(a.D(a.L("Left to "), sideToString(i3), " undefined"));
}
((ViewGroup.MarginLayoutParams) this.mParams).leftMargin = i4;
break;
@ -195,7 +195,7 @@ public class ConstraintProperties {
layoutParams4.rightToRight = i2;
layoutParams4.rightToLeft = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i3), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i3), " undefined"));
}
((ViewGroup.MarginLayoutParams) this.mParams).rightMargin = i4;
break;
@ -211,7 +211,7 @@ public class ConstraintProperties {
layoutParams6.topToTop = -1;
layoutParams6.baselineToBaseline = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i3), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i3), " undefined"));
}
((ViewGroup.MarginLayoutParams) this.mParams).topMargin = i4;
break;
@ -227,7 +227,7 @@ public class ConstraintProperties {
layoutParams8.bottomToBottom = -1;
layoutParams8.baselineToBaseline = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i3), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i3), " undefined"));
}
((ViewGroup.MarginLayoutParams) this.mParams).bottomMargin = i4;
break;
@ -241,7 +241,7 @@ public class ConstraintProperties {
layoutParams9.topToBottom = -1;
break;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i3), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i3), " undefined"));
}
case 6:
if (i3 == 6) {
@ -253,7 +253,7 @@ public class ConstraintProperties {
layoutParams11.startToEnd = i2;
layoutParams11.startToStart = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i3), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i3), " undefined"));
}
this.mParams.setMarginStart(i4);
break;
@ -267,7 +267,7 @@ public class ConstraintProperties {
layoutParams13.endToStart = i2;
layoutParams13.endToEnd = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i3), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i3), " undefined"));
}
this.mParams.setMarginEnd(i4);
break;
@ -275,7 +275,7 @@ public class ConstraintProperties {
StringBuilder sb = new StringBuilder();
sb.append(sideToString(i));
sb.append(" to ");
throw new IllegalArgumentException(a.C(sb, sideToString(i3), " unknown"));
throw new IllegalArgumentException(a.D(sb, sideToString(i3), " unknown"));
}
return this;
}

View File

@ -287,9 +287,9 @@ public class ConstraintSet {
if (constraintAttribute.getType() == attributeType) {
return constraintAttribute;
}
StringBuilder K = a.K("ConstraintAttribute is already a ");
K.append(constraintAttribute.getType().name());
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("ConstraintAttribute is already a ");
L.append(constraintAttribute.getType().name());
throw new IllegalArgumentException(L.toString());
}
ConstraintAttribute constraintAttribute2 = new ConstraintAttribute(str, attributeType);
this.mCustomConstraints.put(str, constraintAttribute2);
@ -857,21 +857,21 @@ public class ConstraintSet {
this.mBarrierAllowsGoneWidgets = obtainStyledAttributes.getBoolean(index, this.mBarrierAllowsGoneWidgets);
continue;
case 76:
StringBuilder K = a.K("unused attribute 0x");
K.append(Integer.toHexString(index));
K.append(" ");
K.append(mapToConstant.get(index));
Log.w(ConstraintSet.TAG, K.toString());
StringBuilder L = a.L("unused attribute 0x");
L.append(Integer.toHexString(index));
L.append(" ");
L.append(mapToConstant.get(index));
Log.w(ConstraintSet.TAG, L.toString());
continue;
case 77:
this.mConstraintTag = obtainStyledAttributes.getString(index);
continue;
default:
StringBuilder K2 = a.K("Unknown attribute 0x");
K2.append(Integer.toHexString(index));
K2.append(" ");
K2.append(mapToConstant.get(index));
Log.w(ConstraintSet.TAG, K2.toString());
StringBuilder L2 = a.L("Unknown attribute 0x");
L2.append(Integer.toHexString(index));
L2.append(" ");
L2.append(mapToConstant.get(index));
Log.w(ConstraintSet.TAG, L2.toString());
continue;
continue;
continue;
@ -1207,9 +1207,9 @@ public class ConstraintSet {
if (this.mSavedAttributes.containsKey(strArr[i])) {
ConstraintAttribute constraintAttribute = this.mSavedAttributes.get(strArr[i]);
if (constraintAttribute.getType() != attributeType) {
StringBuilder K = a.K("ConstraintAttribute is already a ");
K.append(constraintAttribute.getType().name());
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("ConstraintAttribute is already a ");
L.append(constraintAttribute.getType().name());
throw new IllegalArgumentException(L.toString());
}
} else {
this.mSavedAttributes.put(strArr[i], new ConstraintAttribute(strArr[i], attributeType));
@ -1624,18 +1624,18 @@ public class ConstraintSet {
layout53.constrainedHeight = typedArray.getBoolean(index, layout53.constrainedHeight);
break;
case 82:
StringBuilder K = a.K("unused attribute 0x");
K.append(Integer.toHexString(index));
K.append(" ");
K.append(mapToConstant.get(index));
Log.w(TAG, K.toString());
StringBuilder L = a.L("unused attribute 0x");
L.append(Integer.toHexString(index));
L.append(" ");
L.append(mapToConstant.get(index));
Log.w(TAG, L.toString());
break;
default:
StringBuilder K2 = a.K("Unknown attribute 0x");
K2.append(Integer.toHexString(index));
K2.append(" ");
K2.append(mapToConstant.get(index));
Log.w(TAG, K2.toString());
StringBuilder L2 = a.L("Unknown attribute 0x");
L2.append(Integer.toHexString(index));
L2.append(" ");
L2.append(mapToConstant.get(index));
Log.w(TAG, L2.toString());
break;
}
}
@ -1734,9 +1734,9 @@ public class ConstraintSet {
View childAt = constraintLayout.getChildAt(i);
int id2 = childAt.getId();
if (!this.mConstraints.containsKey(Integer.valueOf(id2))) {
StringBuilder K = a.K("id unknown ");
K.append(Debug.getName(childAt));
Log.v(TAG, K.toString());
StringBuilder L = a.L("id unknown ");
L.append(Debug.getName(childAt));
Log.v(TAG, L.toString());
} else if (this.mForceId && id2 == -1) {
throw new RuntimeException("All children of ConstraintLayout must have ids to use ConstraintSet");
} else if (this.mConstraints.containsKey(Integer.valueOf(id2))) {
@ -1768,9 +1768,9 @@ public class ConstraintSet {
View childAt = constraintLayout.getChildAt(i);
int id2 = childAt.getId();
if (!this.mConstraints.containsKey(Integer.valueOf(id2))) {
StringBuilder K = a.K("id unknown ");
K.append(Debug.getName(childAt));
Log.w(TAG, K.toString());
StringBuilder L = a.L("id unknown ");
L.append(Debug.getName(childAt));
Log.w(TAG, L.toString());
} else if (this.mForceId && id2 == -1) {
throw new RuntimeException("All children of ConstraintLayout must have ids to use ConstraintSet");
} else if (id2 != -1) {
@ -2103,7 +2103,7 @@ public class ConstraintSet {
layout2.leftToLeft = -1;
return;
} else {
throw new IllegalArgumentException(a.C(a.K("left to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("left to "), sideToString(i4), " undefined"));
}
case 2:
if (i4 == 1) {
@ -2117,7 +2117,7 @@ public class ConstraintSet {
layout4.rightToLeft = -1;
return;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
case 3:
if (i4 == 3) {
@ -2133,7 +2133,7 @@ public class ConstraintSet {
layout6.baselineToBaseline = -1;
return;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
case 4:
if (i4 == 4) {
@ -2149,7 +2149,7 @@ public class ConstraintSet {
layout8.baselineToBaseline = -1;
return;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
case 5:
if (i4 == 5) {
@ -2161,7 +2161,7 @@ public class ConstraintSet {
layout9.topToBottom = -1;
return;
}
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
case 6:
if (i4 == 6) {
Layout layout10 = constraint.layout;
@ -2174,7 +2174,7 @@ public class ConstraintSet {
layout11.startToStart = -1;
return;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
case 7:
if (i4 == 7) {
@ -2188,13 +2188,13 @@ public class ConstraintSet {
layout13.endToEnd = -1;
return;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
default:
StringBuilder sb = new StringBuilder();
sb.append(sideToString(i2));
sb.append(" to ");
throw new IllegalArgumentException(a.C(sb, sideToString(i4), " unknown"));
throw new IllegalArgumentException(a.D(sb, sideToString(i4), " unknown"));
}
}
@ -2214,7 +2214,7 @@ public class ConstraintSet {
layout2.leftToRight = i3;
layout2.leftToLeft = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("Left to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("Left to "), sideToString(i4), " undefined"));
}
constraint.layout.leftMargin = i5;
return;
@ -2228,7 +2228,7 @@ public class ConstraintSet {
layout4.rightToRight = i3;
layout4.rightToLeft = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
constraint.layout.rightMargin = i5;
return;
@ -2244,7 +2244,7 @@ public class ConstraintSet {
layout6.topToTop = -1;
layout6.baselineToBaseline = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
constraint.layout.topMargin = i5;
return;
@ -2260,7 +2260,7 @@ public class ConstraintSet {
layout8.bottomToBottom = -1;
layout8.baselineToBaseline = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
constraint.layout.bottomMargin = i5;
return;
@ -2274,7 +2274,7 @@ public class ConstraintSet {
layout9.topToBottom = -1;
return;
}
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
case 6:
if (i4 == 6) {
Layout layout10 = constraint.layout;
@ -2285,7 +2285,7 @@ public class ConstraintSet {
layout11.startToEnd = i3;
layout11.startToStart = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
constraint.layout.startMargin = i5;
return;
@ -2299,7 +2299,7 @@ public class ConstraintSet {
layout13.endToStart = i3;
layout13.endToEnd = -1;
} else {
throw new IllegalArgumentException(a.C(a.K("right to "), sideToString(i4), " undefined"));
throw new IllegalArgumentException(a.D(a.L("right to "), sideToString(i4), " undefined"));
}
constraint.layout.endMargin = i5;
return;
@ -2307,7 +2307,7 @@ public class ConstraintSet {
StringBuilder sb = new StringBuilder();
sb.append(sideToString(i2));
sb.append(" to ");
throw new IllegalArgumentException(a.C(sb, sideToString(i4), " unknown"));
throw new IllegalArgumentException(a.D(sb, sideToString(i4), " unknown"));
}
}
@ -2669,7 +2669,7 @@ public class ConstraintSet {
for (int i = 0; i < split.length; i++) {
String[] split2 = split[i].split("=");
if (split2.length != 2) {
a.i0(a.K(" Unable to parse "), split[i], TAG);
a.j0(a.L(" Unable to parse "), split[i], TAG);
} else {
Constraint.access$600(constraint, split2[0], Color.parseColor(split2[1]));
}
@ -2681,7 +2681,7 @@ public class ConstraintSet {
for (int i = 0; i < split.length; i++) {
String[] split2 = split[i].split("=");
if (split2.length != 2) {
a.i0(a.K(" Unable to parse "), split[i], TAG);
a.j0(a.L(" Unable to parse "), split[i], TAG);
} else {
Constraint.access$700(constraint, split2[0], Float.parseFloat(split2[1]));
}
@ -2693,7 +2693,7 @@ public class ConstraintSet {
for (int i = 0; i < split.length; i++) {
String[] split2 = split[i].split("=");
if (split2.length != 2) {
a.i0(a.K(" Unable to parse "), split[i], TAG);
a.j0(a.L(" Unable to parse "), split[i], TAG);
} else {
Constraint.access$700(constraint, split2[0], (float) Integer.decode(split2[1]).intValue());
}
@ -2704,7 +2704,7 @@ public class ConstraintSet {
String[] splitString = splitString(str);
for (int i = 0; i < splitString.length; i++) {
String[] split = splitString[i].split("=");
a.i0(a.K(" Unable to parse "), splitString[i], TAG);
a.j0(a.L(" Unable to parse "), splitString[i], TAG);
Constraint.access$800(constraint, split[0], split[1]);
}
}

View File

@ -379,11 +379,11 @@ public class CoordinatorLayout extends ViewGroup implements NestedScrollingParen
this.mAnchorDirectChild = null;
this.mAnchorView = null;
} else {
StringBuilder K = a.K("Could not find CoordinatorLayout descendant view with id ");
K.append(coordinatorLayout.getResources().getResourceName(this.mAnchorId));
K.append(" to anchor view ");
K.append(view);
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Could not find CoordinatorLayout descendant view with id ");
L.append(coordinatorLayout.getResources().getResourceName(this.mAnchorId));
L.append(" to anchor view ");
L.append(view);
throw new IllegalStateException(L.toString());
}
}
@ -826,11 +826,11 @@ public class CoordinatorLayout extends ViewGroup implements NestedScrollingParen
if (behavior == null || !behavior.getInsetDodgeRect(this, view, acquireTempRect)) {
acquireTempRect.set(acquireTempRect2);
} else if (!acquireTempRect2.contains(acquireTempRect)) {
StringBuilder K = a.K("Rect should be within the child's bounds. Rect:");
K.append(acquireTempRect.toShortString());
K.append(" | Bounds:");
K.append(acquireTempRect2.toShortString());
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("Rect should be within the child's bounds. Rect:");
L.append(acquireTempRect.toShortString());
L.append(" | Bounds:");
L.append(acquireTempRect2.toShortString());
throw new IllegalArgumentException(L.toString());
}
releaseTempRect(acquireTempRect2);
if (acquireTempRect.isEmpty()) {
@ -1257,10 +1257,10 @@ public class CoordinatorLayout extends ViewGroup implements NestedScrollingParen
try {
layoutParams.setBehavior((Behavior) defaultBehavior.value().getDeclaredConstructor(new Class[0]).newInstance(new Object[0]));
} catch (Exception e) {
StringBuilder K = a.K("Default behavior class ");
K.append(defaultBehavior.value().getName());
K.append(" could not be instantiated. Did you forget a default constructor?");
Log.e(TAG, K.toString(), e);
StringBuilder L = a.L("Default behavior class ");
L.append(defaultBehavior.value().getName());
L.append(" could not be instantiated. Did you forget a default constructor?");
Log.e(TAG, L.toString(), e);
}
}
layoutParams.mBehaviorResolved = true;

View File

@ -28,27 +28,27 @@ public final class AccessibilityServiceInfoCompat {
@NonNull
public static String feedbackTypeToString(int i) {
StringBuilder K = a.K("[");
StringBuilder L = a.L("[");
while (i > 0) {
int numberOfTrailingZeros = 1 << Integer.numberOfTrailingZeros(i);
i &= ~numberOfTrailingZeros;
if (K.length() > 1) {
K.append(", ");
if (L.length() > 1) {
L.append(", ");
}
if (numberOfTrailingZeros == 1) {
K.append("FEEDBACK_SPOKEN");
L.append("FEEDBACK_SPOKEN");
} else if (numberOfTrailingZeros == 2) {
K.append("FEEDBACK_HAPTIC");
L.append("FEEDBACK_HAPTIC");
} else if (numberOfTrailingZeros == 4) {
K.append("FEEDBACK_AUDIBLE");
L.append("FEEDBACK_AUDIBLE");
} else if (numberOfTrailingZeros == 8) {
K.append("FEEDBACK_VISUAL");
L.append("FEEDBACK_VISUAL");
} else if (numberOfTrailingZeros == 16) {
K.append("FEEDBACK_GENERIC");
L.append("FEEDBACK_GENERIC");
}
}
K.append("]");
return K.toString();
L.append("]");
return L.toString();
}
@Nullable

View File

@ -265,9 +265,9 @@ public abstract class JobIntentService extends Service {
this.mHasJobId = true;
this.mJobId = i;
} else if (this.mJobId != i) {
StringBuilder L = a.L("Given job ID ", i, " is different than previous ");
L.append(this.mJobId);
throw new IllegalArgumentException(L.toString());
StringBuilder M = a.M("Given job ID ", i, " is different than previous ");
M.append(this.mJobId);
throw new IllegalArgumentException(M.toString());
}
}

View File

@ -99,10 +99,10 @@ public final class NavUtils {
navigateUpTo(activity, parentActivityIntent);
return;
}
StringBuilder K = a.K("Activity ");
K.append(activity.getClass().getSimpleName());
K.append(" does not have a parent activity name specified. (Did you forget to add the android.support.PARENT_ACTIVITY <meta-data> element in your manifest?)");
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("Activity ");
L.append(activity.getClass().getSimpleName());
L.append(" does not have a parent activity name specified. (Did you forget to add the android.support.PARENT_ACTIVITY <meta-data> element in your manifest?)");
throw new IllegalArgumentException(L.toString());
}
public static void navigateUpTo(@NonNull Activity activity, @NonNull Intent intent) {

View File

@ -104,7 +104,7 @@ public final class NotificationManagerCompat {
sb.append(", tag:");
sb.append(this.tag);
sb.append(", all:");
return c.d.b.a.a.F(sb, this.all, "]");
return c.d.b.a.a.G(sb, this.all, "]");
}
}
@ -136,7 +136,7 @@ public final class NotificationManagerCompat {
sb.append(", id:");
sb.append(this.f26id);
sb.append(", tag:");
return c.d.b.a.a.C(sb, this.tag, "]");
return c.d.b.a.a.D(sb, this.tag, "]");
}
}
@ -190,9 +190,9 @@ public final class NotificationManagerCompat {
if (bindService) {
listenerRecord.retryCount = 0;
} else {
StringBuilder K = c.d.b.a.a.K("Unable to bind to listener ");
K.append(listenerRecord.componentName);
Log.w(NotificationManagerCompat.TAG, K.toString());
StringBuilder L = c.d.b.a.a.L("Unable to bind to listener ");
L.append(listenerRecord.componentName);
Log.w(NotificationManagerCompat.TAG, L.toString());
this.mContext.unbindService(this);
}
return listenerRecord.bound;
@ -239,12 +239,12 @@ public final class NotificationManagerCompat {
private void processListenerQueue(ListenerRecord listenerRecord) {
if (Log.isLoggable(NotificationManagerCompat.TAG, 3)) {
StringBuilder K = c.d.b.a.a.K("Processing component ");
K.append(listenerRecord.componentName);
K.append(", ");
K.append(listenerRecord.taskQueue.size());
K.append(" queued tasks");
Log.d(NotificationManagerCompat.TAG, K.toString());
StringBuilder L = c.d.b.a.a.L("Processing component ");
L.append(listenerRecord.componentName);
L.append(", ");
L.append(listenerRecord.taskQueue.size());
L.append(" queued tasks");
Log.d(NotificationManagerCompat.TAG, L.toString());
}
if (!listenerRecord.taskQueue.isEmpty()) {
if (!ensureServiceBound(listenerRecord) || listenerRecord.service == null) {
@ -264,14 +264,14 @@ public final class NotificationManagerCompat {
listenerRecord.taskQueue.remove();
} catch (DeadObjectException unused) {
if (Log.isLoggable(NotificationManagerCompat.TAG, 3)) {
StringBuilder K2 = c.d.b.a.a.K("Remote service has died: ");
K2.append(listenerRecord.componentName);
Log.d(NotificationManagerCompat.TAG, K2.toString());
StringBuilder L2 = c.d.b.a.a.L("Remote service has died: ");
L2.append(listenerRecord.componentName);
Log.d(NotificationManagerCompat.TAG, L2.toString());
}
} catch (RemoteException e) {
StringBuilder K3 = c.d.b.a.a.K("RemoteException communicating with ");
K3.append(listenerRecord.componentName);
Log.w(NotificationManagerCompat.TAG, K3.toString(), e);
StringBuilder L3 = c.d.b.a.a.L("RemoteException communicating with ");
L3.append(listenerRecord.componentName);
Log.w(NotificationManagerCompat.TAG, L3.toString(), e);
}
}
if (!listenerRecord.taskQueue.isEmpty()) {
@ -285,14 +285,14 @@ public final class NotificationManagerCompat {
int i = listenerRecord.retryCount + 1;
listenerRecord.retryCount = i;
if (i > 6) {
StringBuilder K = c.d.b.a.a.K("Giving up on delivering ");
K.append(listenerRecord.taskQueue.size());
K.append(" tasks to ");
K.append(listenerRecord.componentName);
K.append(" after ");
K.append(listenerRecord.retryCount);
K.append(" retries");
Log.w(NotificationManagerCompat.TAG, K.toString());
StringBuilder L = c.d.b.a.a.L("Giving up on delivering ");
L.append(listenerRecord.taskQueue.size());
L.append(" tasks to ");
L.append(listenerRecord.componentName);
L.append(" after ");
L.append(listenerRecord.retryCount);
L.append(" retries");
Log.w(NotificationManagerCompat.TAG, L.toString());
listenerRecord.taskQueue.clear();
return;
}
@ -336,9 +336,9 @@ public final class NotificationManagerCompat {
Map.Entry<ComponentName, ListenerRecord> next = it2.next();
if (!hashSet.contains(next.getKey())) {
if (Log.isLoggable(NotificationManagerCompat.TAG, 3)) {
StringBuilder K = c.d.b.a.a.K("Removing listener record for ");
K.append(next.getKey());
Log.d(NotificationManagerCompat.TAG, K.toString());
StringBuilder L = c.d.b.a.a.L("Removing listener record for ");
L.append(next.getKey());
Log.d(NotificationManagerCompat.TAG, L.toString());
}
ensureServiceUnbound(next.getValue());
it2.remove();

View File

@ -433,11 +433,11 @@ public final class ShareCompat {
if (i == 0) {
return (Uri) this.mIntent.getParcelableExtra("android.intent.extra.STREAM");
}
StringBuilder K = a.K("Stream items available: ");
K.append(getStreamCount());
K.append(" index requested: ");
K.append(i);
throw new IndexOutOfBoundsException(K.toString());
StringBuilder L = a.L("Stream items available: ");
L.append(getStreamCount());
L.append(" index requested: ");
L.append(i);
throw new IndexOutOfBoundsException(L.toString());
}
public int getStreamCount() {
@ -492,9 +492,9 @@ public final class ShareCompat {
public static void configureMenuItem(@NonNull MenuItem menuItem, @NonNull IntentBuilder intentBuilder) {
ActionProvider actionProvider = menuItem.getActionProvider();
ShareActionProvider shareActionProvider = !(actionProvider instanceof ShareActionProvider) ? new ShareActionProvider(intentBuilder.getContext()) : (ShareActionProvider) actionProvider;
StringBuilder K = a.K(HISTORY_FILENAME_PREFIX);
K.append(intentBuilder.getContext().getClass().getName());
shareActionProvider.setShareHistoryFileName(K.toString());
StringBuilder L = a.L(HISTORY_FILENAME_PREFIX);
L.append(intentBuilder.getContext().getClass().getName());
shareActionProvider.setShareHistoryFileName(L.toString());
shareActionProvider.setShareIntent(intentBuilder.getIntent());
menuItem.setActionProvider(shareActionProvider);
}

View File

@ -197,10 +197,10 @@ public class ShortcutInfoCompat {
persistableBundle.putInt(EXTRA_PERSON_COUNT, personArr.length);
int i = 0;
while (i < this.mPersons.length) {
StringBuilder K = a.K(EXTRA_PERSON_);
StringBuilder L = a.L(EXTRA_PERSON_);
int i2 = i + 1;
K.append(i2);
persistableBundle.putPersistableBundle(K.toString(), this.mPersons[i].toPersistableBundle());
L.append(i2);
persistableBundle.putPersistableBundle(L.toString(), this.mPersons[i].toPersistableBundle());
i = i2;
}
}
@ -230,10 +230,10 @@ public class ShortcutInfoCompat {
Person[] personArr = new Person[i];
int i2 = 0;
while (i2 < i) {
StringBuilder K = a.K(EXTRA_PERSON_);
StringBuilder L = a.L(EXTRA_PERSON_);
int i3 = i2 + 1;
K.append(i3);
personArr[i2] = Person.fromPersistableBundle(persistableBundle.getPersistableBundle(K.toString()));
L.append(i3);
personArr[i2] = Person.fromPersistableBundle(persistableBundle.getPersistableBundle(L.toString()));
i2 = i3;
}
return personArr;

View File

@ -172,12 +172,12 @@ public final class ResourcesCompat {
if (typedValue.type == 4) {
return typedValue.getFloat();
}
StringBuilder K = a.K("Resource ID #0x");
K.append(Integer.toHexString(i));
K.append(" type #0x");
K.append(Integer.toHexString(typedValue.type));
K.append(" is not valid");
throw new Resources.NotFoundException(K.toString());
StringBuilder L = a.L("Resource ID #0x");
L.append(Integer.toHexString(i));
L.append(" type #0x");
L.append(Integer.toHexString(typedValue.type));
L.append(" is not valid");
throw new Resources.NotFoundException(L.toString());
}
@Nullable
@ -212,10 +212,10 @@ public final class ResourcesCompat {
if (loadFont != null || fontCallback != null) {
return loadFont;
}
StringBuilder K = a.K("Font resource ID #0x");
K.append(Integer.toHexString(i));
K.append(" could not be retrieved.");
throw new Resources.NotFoundException(K.toString());
StringBuilder L = a.L("Font resource ID #0x");
L.append(Integer.toHexString(i));
L.append(" could not be retrieved.");
throw new Resources.NotFoundException(L.toString());
}
/* JADX WARNING: Removed duplicated region for block: B:34:0x00a4 */
@ -270,13 +270,13 @@ public final class ResourcesCompat {
return null;
}
} else {
StringBuilder K = a.K("Resource \"");
K.append(resources.getResourceName(i));
K.append("\" (");
K.append(Integer.toHexString(i));
K.append(") is not a Font: ");
K.append(typedValue);
throw new Resources.NotFoundException(K.toString());
StringBuilder L = a.L("Resource \"");
L.append(resources.getResourceName(i));
L.append("\" (");
L.append(Integer.toHexString(i));
L.append(") is not a Font: ");
L.append(typedValue);
throw new Resources.NotFoundException(L.toString());
}
}
}

View File

@ -20,7 +20,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -33,7 +33,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i5, canvas, save, i5);
a.X(i5, canvas, save, i5);
}
}
@ -47,7 +47,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -61,7 +61,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -75,7 +75,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -89,7 +89,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -106,7 +106,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i2, canvas, save, i2);
a.X(i2, canvas, save, i2);
}
}
@ -119,7 +119,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -141,7 +141,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i2, canvas, save, i2);
a.X(i2, canvas, save, i2);
}
}
@ -153,7 +153,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -166,7 +166,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -191,7 +191,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i2, canvas, save, i2);
a.X(i2, canvas, save, i2);
}
}
@ -204,7 +204,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -223,7 +223,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i2, canvas, save, i2);
a.X(i2, canvas, save, i2);
}
}
@ -236,7 +236,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i, canvas, save, i);
a.X(i, canvas, save, i);
}
}
@ -255,7 +255,7 @@ public final class CanvasKt {
try {
function1.invoke(canvas);
} finally {
a.W(i2, canvas, save, i2);
a.X(i2, canvas, save, i2);
}
}
}

View File

@ -206,9 +206,9 @@ public final class ColorUtils {
double calculateLuminance2 = calculateLuminance(i2) + 0.05d;
return Math.max(calculateLuminance, calculateLuminance2) / Math.min(calculateLuminance, calculateLuminance2);
}
StringBuilder K = a.K("background can not be translucent: #");
K.append(Integer.toHexString(i2));
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("background can not be translucent: #");
L.append(Integer.toHexString(i2));
throw new IllegalArgumentException(L.toString());
}
@FloatRange(from = ShadowDrawableWrapper.COS_45, to = 1.0d)
@ -236,9 +236,9 @@ public final class ColorUtils {
}
return i3;
}
StringBuilder K = a.K("background can not be translucent: #");
K.append(Integer.toHexString(i2));
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("background can not be translucent: #");
L.append(Integer.toHexString(i2));
throw new IllegalArgumentException(L.toString());
}
@VisibleForTesting
@ -298,12 +298,12 @@ public final class ColorUtils {
}
return Color.valueOf(components2, color2.getColorSpace());
}
StringBuilder K = a.K("Color models must match (");
K.append(color.getModel());
K.append(" vs. ");
K.append(color2.getModel());
K.append(")");
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("Color models must match (");
L.append(color.getModel());
L.append(" vs. ");
L.append(color2.getModel());
L.append(")");
throw new IllegalArgumentException(L.toString());
}
private static int compositeComponent(int i, int i2, int i3, int i4, int i5) {

View File

@ -66,13 +66,13 @@ public final class Insets {
}
public String toString() {
StringBuilder K = a.K("Insets{left=");
K.append(this.left);
K.append(", top=");
K.append(this.top);
K.append(", right=");
K.append(this.right);
K.append(", bottom=");
return a.v(K, this.bottom, '}');
StringBuilder L = a.L("Insets{left=");
L.append(this.left);
L.append(", top=");
L.append(this.top);
L.append(", right=");
L.append(this.right);
L.append(", bottom=");
return a.v(L, this.bottom, '}');
}
}

View File

@ -59,15 +59,15 @@ public final class PathSegment {
}
public String toString() {
StringBuilder K = a.K("PathSegment{start=");
K.append(this.mStart);
K.append(", startFraction=");
K.append(this.mStartFraction);
K.append(", end=");
K.append(this.mEnd);
K.append(", endFraction=");
K.append(this.mEndFraction);
K.append('}');
return K.toString();
StringBuilder L = a.L("PathSegment{start=");
L.append(this.mStart);
L.append(", startFraction=");
L.append(this.mStartFraction);
L.append(", end=");
L.append(this.mEnd);
L.append(", endFraction=");
L.append(this.mEndFraction);
L.append('}');
return L.toString();
}
}

View File

@ -60,9 +60,9 @@ public class TypefaceCompatApi26Impl extends TypefaceCompatApi21Impl {
method5 = obtainCreateFromFamiliesWithDefaultMethod(obtainFontFamily);
cls = obtainFontFamily;
} catch (ClassNotFoundException | NoSuchMethodException e) {
StringBuilder K = a.K("Unable to collect necessary methods for class ");
K.append(e.getClass().getName());
Log.e(TAG, K.toString(), e);
StringBuilder L = a.L("Unable to collect necessary methods for class ");
L.append(e.getClass().getName());
Log.e(TAG, L.toString(), e);
method5 = null;
constructor = null;
method4 = null;

View File

@ -134,12 +134,12 @@ public class TypefaceCompatUtil {
if (cacheDir == null) {
return null;
}
StringBuilder K = a.K(CACHE_FILE_PREFIX);
K.append(Process.myPid());
K.append("-");
K.append(Process.myTid());
K.append("-");
String sb = K.toString();
StringBuilder L = a.L(CACHE_FILE_PREFIX);
L.append(Process.myPid());
L.append("-");
L.append(Process.myTid());
L.append("-");
String sb = L.toString();
for (int i = 0; i < 100; i++) {
File file = new File(cacheDir, a.j(sb, i));
try {

View File

@ -123,7 +123,7 @@ public class IconCompat extends CustomVersionedParcelable {
break;
case 0:
default:
a.d0("Unknown type ", i, TAG);
a.f0("Unknown type ", i, TAG);
return null;
case 2:
case 4:
@ -514,9 +514,9 @@ public class IconCompat extends CustomVersionedParcelable {
drawable2.setBounds(0, 0, bitmap.getWidth(), bitmap.getHeight());
drawable2.draw(new Canvas(bitmap));
} catch (PackageManager.NameNotFoundException e) {
StringBuilder K = a.K("Can't find package ");
K.append(this.mObj1);
throw new IllegalArgumentException(K.toString(), e);
StringBuilder L = a.L("Can't find package ");
L.append(this.mObj1);
throw new IllegalArgumentException(L.toString(), e);
}
} else if (i == 5) {
bitmap = createLegacyIconFromAdaptiveIcon((Bitmap) this.mObj1, true);
@ -799,14 +799,14 @@ public class IconCompat extends CustomVersionedParcelable {
break;
}
} else {
StringBuilder K = a.K("Cannot load adaptive icon from uri: ");
K.append(getUri());
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Cannot load adaptive icon from uri: ");
L.append(getUri());
throw new IllegalStateException(L.toString());
}
} else {
StringBuilder K2 = a.K("Context is required to resolve the file uri of the icon: ");
K2.append(getUri());
throw new IllegalArgumentException(K2.toString());
StringBuilder L2 = a.L("Context is required to resolve the file uri of the icon: ");
L2.append(getUri());
throw new IllegalArgumentException(L2.toString());
}
}
ColorStateList colorStateList = this.mTintList;

View File

@ -61,7 +61,7 @@ public final class RoundedBitmapDrawableFactory {
public static RoundedBitmapDrawable create(@NonNull Resources resources, @NonNull String str) {
RoundedBitmapDrawable create = create(resources, BitmapFactory.decodeFile(str));
if (create.getBitmap() == null) {
a.g0("RoundedBitmapDrawable cannot decode ", str, TAG);
a.h0("RoundedBitmapDrawable cannot decode ", str, TAG);
}
return create;
}

View File

@ -30,15 +30,15 @@ public final class UriCompat {
}
return sb.toString();
} else if (scheme.equalsIgnoreCase("http") || scheme.equalsIgnoreCase(Constants.SCHEME) || scheme.equalsIgnoreCase("ftp") || scheme.equalsIgnoreCase("rtsp")) {
StringBuilder K = a.K("//");
StringBuilder L = a.L("//");
String str = "";
K.append(uri.getHost() != null ? uri.getHost() : str);
L.append(uri.getHost() != null ? uri.getHost() : str);
if (uri.getPort() != -1) {
StringBuilder K2 = a.K(":");
K2.append(uri.getPort());
str = K2.toString();
StringBuilder L2 = a.L(":");
L2.append(uri.getPort());
str = L2.toString();
}
schemeSpecificPart = a.C(K, str, "/...");
schemeSpecificPart = a.D(L, str, "/...");
}
}
StringBuilder sb2 = new StringBuilder(64);

View File

@ -228,19 +228,19 @@ public final class LocaleListCompatWrapper implements LocaleListInterface {
}
public String toString() {
StringBuilder K = a.K("[");
StringBuilder L = a.L("[");
int i = 0;
while (true) {
Locale[] localeArr = this.mList;
if (i < localeArr.length) {
K.append(localeArr[i]);
L.append(localeArr[i]);
if (i < this.mList.length - 1) {
K.append(',');
L.append(',');
}
i++;
} else {
K.append("]");
return K.toString();
L.append("]");
return L.toString();
}
}
}

View File

@ -73,14 +73,14 @@ public final class FontRequest {
public String toString() {
StringBuilder sb = new StringBuilder();
StringBuilder K = a.K("FontRequest {mProviderAuthority: ");
K.append(this.mProviderAuthority);
K.append(", mProviderPackage: ");
K.append(this.mProviderPackage);
K.append(", mQuery: ");
K.append(this.mQuery);
K.append(", mCertificates:");
sb.append(K.toString());
StringBuilder L = a.L("FontRequest {mProviderAuthority: ");
L.append(this.mProviderAuthority);
L.append(", mProviderPackage: ");
L.append(this.mProviderPackage);
L.append(", mQuery: ");
L.append(this.mQuery);
L.append(", mCertificates:");
sb.append(L.toString());
for (int i = 0; i < this.mCertificates.size(); i++) {
sb.append(" [");
List<byte[]> list = this.mCertificates.get(i);

View File

@ -583,9 +583,9 @@ public class FontsContractCompat {
}
return null;
} else {
StringBuilder P = a.P("Found content provider ", providerAuthority, ", but package was not ");
P.append(fontRequest.getProviderPackage());
throw new PackageManager.NameNotFoundException(P.toString());
StringBuilder Q = a.Q("Found content provider ", providerAuthority, ", but package was not ");
Q.append(fontRequest.getProviderPackage());
throw new PackageManager.NameNotFoundException(Q.toString());
}
}

View File

@ -172,36 +172,36 @@ public class PrecomputedTextCompat implements Spannable {
public String toString() {
StringBuilder sb = new StringBuilder("{");
StringBuilder K = a.K("textSize=");
K.append(this.mPaint.getTextSize());
sb.append(K.toString());
StringBuilder L = a.L("textSize=");
L.append(this.mPaint.getTextSize());
sb.append(L.toString());
sb.append(", textScaleX=" + this.mPaint.getTextScaleX());
sb.append(", textSkewX=" + this.mPaint.getTextSkewX());
int i = Build.VERSION.SDK_INT;
StringBuilder K2 = a.K(", letterSpacing=");
K2.append(this.mPaint.getLetterSpacing());
sb.append(K2.toString());
StringBuilder L2 = a.L(", letterSpacing=");
L2.append(this.mPaint.getLetterSpacing());
sb.append(L2.toString());
sb.append(", elegantTextHeight=" + this.mPaint.isElegantTextHeight());
if (i >= 24) {
StringBuilder K3 = a.K(", textLocale=");
K3.append(this.mPaint.getTextLocales());
sb.append(K3.toString());
StringBuilder L3 = a.L(", textLocale=");
L3.append(this.mPaint.getTextLocales());
sb.append(L3.toString());
} else {
StringBuilder K4 = a.K(", textLocale=");
K4.append(this.mPaint.getTextLocale());
sb.append(K4.toString());
StringBuilder L4 = a.L(", textLocale=");
L4.append(this.mPaint.getTextLocale());
sb.append(L4.toString());
}
StringBuilder K5 = a.K(", typeface=");
K5.append(this.mPaint.getTypeface());
sb.append(K5.toString());
StringBuilder L5 = a.L(", typeface=");
L5.append(this.mPaint.getTypeface());
sb.append(L5.toString());
if (i >= 26) {
StringBuilder K6 = a.K(", variationSettings=");
K6.append(this.mPaint.getFontVariationSettings());
sb.append(K6.toString());
StringBuilder L6 = a.L(", variationSettings=");
L6.append(this.mPaint.getFontVariationSettings());
sb.append(L6.toString());
}
StringBuilder K7 = a.K(", textDir=");
K7.append(this.mTextDir);
sb.append(K7.toString());
StringBuilder L7 = a.L(", textDir=");
L7.append(this.mTextDir);
sb.append(L7.toString());
sb.append(", breakStrategy=" + this.mBreakStrategy);
sb.append(", hyphenationFrequency=" + this.mHyphenationFrequency);
sb.append("}");

View File

@ -272,7 +272,7 @@ public final class LinkifyCompat {
str = strArr[i] + str.substring(strArr[i].length());
}
}
return (z2 || strArr.length <= 0) ? str : a.C(new StringBuilder(), strArr[0], str);
return (z2 || strArr.length <= 0) ? str : a.D(new StringBuilder(), strArr[0], str);
}
private static void pruneOverlaps(ArrayList<LinkSpec> arrayList, Spannable spannable) {

View File

@ -101,11 +101,11 @@ public class AtomicFile {
if (this.mBackupName.exists()) {
this.mBaseName.delete();
} else if (!this.mBaseName.renameTo(this.mBackupName)) {
StringBuilder K = a.K("Couldn't rename file ");
K.append(this.mBaseName);
K.append(" to backup file ");
K.append(this.mBackupName);
Log.w("AtomicFile", K.toString());
StringBuilder L = a.L("Couldn't rename file ");
L.append(this.mBaseName);
L.append(" to backup file ");
L.append(this.mBackupName);
Log.w("AtomicFile", L.toString());
}
}
try {
@ -115,14 +115,14 @@ public class AtomicFile {
try {
return new FileOutputStream(this.mBaseName);
} catch (FileNotFoundException unused2) {
StringBuilder K2 = a.K("Couldn't create ");
K2.append(this.mBaseName);
throw new IOException(K2.toString());
StringBuilder L2 = a.L("Couldn't create ");
L2.append(this.mBaseName);
throw new IOException(L2.toString());
}
} else {
StringBuilder K3 = a.K("Couldn't create directory ");
K3.append(this.mBaseName);
throw new IOException(K3.toString());
StringBuilder L3 = a.L("Couldn't create directory ");
L3.append(this.mBaseName);
throw new IOException(L3.toString());
}
}
}

View File

@ -40,11 +40,11 @@ public class Pair<F, S> {
@NonNull
public String toString() {
StringBuilder K = a.K("Pair{");
K.append(String.valueOf(this.first));
K.append(" ");
K.append(String.valueOf(this.second));
K.append("}");
return K.toString();
StringBuilder L = a.L("Pair{");
L.append(String.valueOf(this.first));
L.append(" ");
L.append(String.valueOf(this.second));
L.append("}");
return L.toString();
}
}

View File

@ -74,10 +74,10 @@ public abstract class ActionProvider {
public void setVisibilityListener(VisibilityListener visibilityListener) {
if (!(this.mVisibilityListener == null || visibilityListener == null)) {
StringBuilder K = a.K("setVisibilityListener: Setting a new ActionProvider.VisibilityListener when one is already set. Are you reusing this ");
K.append(getClass().getSimpleName());
K.append(" instance while it is still in use somewhere else?");
Log.w(TAG, K.toString());
StringBuilder L = a.L("setVisibilityListener: Setting a new ActionProvider.VisibilityListener when one is already set. Are you reusing this ");
L.append(getClass().getSimpleName());
L.append(" instance while it is still in use somewhere else?");
Log.w(TAG, L.toString());
}
this.mVisibilityListener = visibilityListener;
}

View File

@ -81,10 +81,10 @@ public final class DisplayCutoutCompat {
}
public String toString() {
StringBuilder K = a.K("DisplayCutoutCompat{");
K.append(this.mDisplayCutout);
K.append("}");
return K.toString();
StringBuilder L = a.L("DisplayCutoutCompat{");
L.append(this.mDisplayCutout);
L.append("}");
return L.toString();
}
@RequiresApi(api = 28)

View File

@ -47,10 +47,10 @@ public final class LayoutInflaterCompat {
sLayoutInflaterFactory2Field = declaredField;
declaredField.setAccessible(true);
} catch (NoSuchFieldException e) {
StringBuilder K = a.K("forceSetFactory2 Could not find field 'mFactory2' on class ");
K.append(LayoutInflater.class.getName());
K.append("; inflation may have unexpected results.");
Log.e(TAG, K.toString(), e);
StringBuilder L = a.L("forceSetFactory2 Could not find field 'mFactory2' on class ");
L.append(LayoutInflater.class.getName());
L.append("; inflation may have unexpected results.");
Log.e(TAG, L.toString(), e);
}
sCheckedField = true;
}

View File

@ -48,9 +48,9 @@ public final class ViewGroupKt {
if (childAt != null) {
return childAt;
}
StringBuilder L = a.L("Index: ", i, ", Size: ");
L.append(viewGroup.getChildCount());
throw new IndexOutOfBoundsException(L.toString());
StringBuilder M = a.M("Index: ", i, ", Size: ");
M.append(viewGroup.getChildCount());
throw new IndexOutOfBoundsException(M.toString());
}
public static final Sequence<View> getChildren(ViewGroup viewGroup) {

View File

@ -169,10 +169,10 @@ public class NestedScrollView extends FrameLayout implements NestedScrollingPare
@Override // java.lang.Object
@NonNull
public String toString() {
StringBuilder K = a.K("HorizontalScrollView.SavedState{");
K.append(Integer.toHexString(System.identityHashCode(this)));
K.append(" scrollPosition=");
return a.w(K, this.scrollPosition, "}");
StringBuilder L = a.L("HorizontalScrollView.SavedState{");
L.append(Integer.toHexString(System.identityHashCode(this)));
L.append(" scrollPosition=");
return a.w(L, this.scrollPosition, "}");
}
@Override // android.view.View.BaseSavedState, android.os.Parcelable, android.view.AbsSavedState
@ -1182,10 +1182,10 @@ public class NestedScrollView extends FrameLayout implements NestedScrollingPare
} else if (actionMasked == 2) {
int findPointerIndex = motionEvent.findPointerIndex(this.mActivePointerId);
if (findPointerIndex == -1) {
StringBuilder K = a.K("Invalid pointerId=");
K.append(this.mActivePointerId);
K.append(" in onTouchEvent");
Log.e(TAG, K.toString());
StringBuilder L = a.L("Invalid pointerId=");
L.append(this.mActivePointerId);
L.append(" in onTouchEvent");
Log.e(TAG, L.toString());
} else {
int y2 = (int) motionEvent.getY(findPointerIndex);
int i2 = this.mLastMotionY - y2;

View File

@ -348,10 +348,10 @@ public final class TextViewCompat {
try {
return field.getInt(textView);
} catch (IllegalAccessException unused) {
StringBuilder K = a.K("Could not retrieve value of ");
K.append(field.getName());
K.append(" field.");
Log.d(LOG_TAG, K.toString());
StringBuilder L = a.L("Could not retrieve value of ");
L.append(field.getName());
L.append(" field.");
Log.d(LOG_TAG, L.toString());
return -1;
}
}

View File

@ -465,10 +465,10 @@ public class ViewDragHelper {
setDragState(1);
return;
}
StringBuilder K = a.K("captureChildView: parameter must be a descendant of the ViewDragHelper's tracked parent view (");
K.append(this.mParentView);
K.append(")");
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("captureChildView: parameter must be a descendant of the ViewDragHelper's tracked parent view (");
L.append(this.mParentView);
L.append(")");
throw new IllegalArgumentException(L.toString());
}
public boolean checkTouchSlop(int i) {

View File

@ -748,9 +748,9 @@ public class DrawerLayout extends ViewGroup {
closeDrawer(findDrawerWithGravity, z2);
return;
}
StringBuilder K = a.K("No drawer view found with gravity ");
K.append(gravityToString(i));
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("No drawer view found with gravity ");
L.append(gravityToString(i));
throw new IllegalArgumentException(L.toString());
}
public void closeDrawer(@NonNull View view) {
@ -1342,13 +1342,13 @@ public class DrawerLayout extends ViewGroup {
i4++;
i3 = 0;
} else {
StringBuilder K = a.K("Child drawer has absolute gravity ");
K.append(gravityToString(drawerViewAbsoluteGravity));
K.append(" but this ");
K.append(TAG);
K.append(" already has a ");
K.append("drawer view along that edge");
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Child drawer has absolute gravity ");
L.append(gravityToString(drawerViewAbsoluteGravity));
L.append(" but this ");
L.append(TAG);
L.append(" already has a ");
L.append("drawer view along that edge");
throw new IllegalStateException(L.toString());
}
} else {
throw new IllegalStateException("Child " + childAt + " at index " + i4 + " does not have a valid layout_gravity - must be Gravity.LEFT, Gravity.RIGHT or Gravity.NO_GRAVITY");
@ -1475,9 +1475,9 @@ public class DrawerLayout extends ViewGroup {
openDrawer(findDrawerWithGravity, z2);
return;
}
StringBuilder K = a.K("No drawer view found with gravity ");
K.append(gravityToString(i));
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("No drawer view found with gravity ");
L.append(gravityToString(i));
throw new IllegalArgumentException(L.toString());
}
public void openDrawer(@NonNull View view) {

View File

@ -719,9 +719,9 @@ public class ExifInterface {
if (byteOrder == BIG_ENDIAN) {
return (read << 24) + (read2 << 16) + (read3 << 8) + read4;
}
StringBuilder K = a.K("Invalid byte order: ");
K.append(this.mByteOrder);
throw new IOException(K.toString());
StringBuilder L = a.L("Invalid byte order: ");
L.append(this.mByteOrder);
throw new IOException(L.toString());
}
throw new EOFException();
}
@ -755,9 +755,9 @@ public class ExifInterface {
if (byteOrder == BIG_ENDIAN) {
return (((long) read) << 56) + (((long) read2) << 48) + (((long) read3) << 40) + (((long) read4) << 32) + (((long) read5) << 24) + (((long) read6) << 16) + (((long) read7) << 8) + ((long) read8);
}
StringBuilder K = a.K("Invalid byte order: ");
K.append(this.mByteOrder);
throw new IOException(K.toString());
StringBuilder L = a.L("Invalid byte order: ");
L.append(this.mByteOrder);
throw new IOException(L.toString());
}
throw new EOFException();
}
@ -779,9 +779,9 @@ public class ExifInterface {
if (byteOrder == BIG_ENDIAN) {
return (short) ((read << 8) + read2);
}
StringBuilder K = a.K("Invalid byte order: ");
K.append(this.mByteOrder);
throw new IOException(K.toString());
StringBuilder L = a.L("Invalid byte order: ");
L.append(this.mByteOrder);
throw new IOException(L.toString());
}
throw new EOFException();
}
@ -819,9 +819,9 @@ public class ExifInterface {
if (byteOrder == BIG_ENDIAN) {
return (read << 8) + read2;
}
StringBuilder K = a.K("Invalid byte order: ");
K.append(this.mByteOrder);
throw new IOException(K.toString());
StringBuilder L = a.L("Invalid byte order: ");
L.append(this.mByteOrder);
throw new IOException(L.toString());
}
throw new EOFException();
}
@ -1370,10 +1370,10 @@ public class ExifInterface {
}
public String toString() {
StringBuilder K = a.K("(");
K.append(ExifInterface.IFD_FORMAT_NAMES[this.format]);
K.append(", data length:");
return a.w(K, this.bytes.length, ")");
StringBuilder L = a.L("(");
L.append(ExifInterface.IFD_FORMAT_NAMES[this.format]);
L.append(", data length:");
return a.w(L, this.bytes.length, ")");
}
}
@ -1740,18 +1740,18 @@ public class ExifInterface {
while (true) {
byte[] bArr3 = new byte[4];
if (byteOrderedDataInputStream.read(bArr3) != 4) {
StringBuilder K = a.K("Encountered invalid length while copying WebP chunks up tochunk type ");
StringBuilder L = a.L("Encountered invalid length while copying WebP chunks up tochunk type ");
Charset charset = ASCII;
K.append(new String(bArr, charset));
L.append(new String(bArr, charset));
if (bArr2 == null) {
str = "";
} else {
StringBuilder K2 = a.K(" or ");
K2.append(new String(bArr2, charset));
str = K2.toString();
StringBuilder L2 = a.L(" or ");
L2.append(new String(bArr2, charset));
str = L2.toString();
}
K.append(str);
throw new IOException(K.toString());
L.append(str);
throw new IOException(L.toString());
}
copyWebPChunk(byteOrderedDataInputStream, byteOrderedDataOutputStream, bArr3);
if (Arrays.equals(bArr3, bArr)) {
@ -1895,9 +1895,9 @@ public class ExifInterface {
byte readByte = byteOrderedDataInputStream.readByte();
byte b = -1;
if (readByte != -1) {
StringBuilder K = a.K("Invalid marker: ");
K.append(Integer.toHexString(readByte & 255));
throw new IOException(K.toString());
StringBuilder L = a.L("Invalid marker: ");
L.append(Integer.toHexString(readByte & 255));
throw new IOException(L.toString());
} else if (byteOrderedDataInputStream.readByte() == -40) {
int i3 = 2;
int i4 = 2;
@ -1908,21 +1908,21 @@ public class ExifInterface {
byte readByte3 = byteOrderedDataInputStream.readByte();
boolean z2 = DEBUG;
if (z2) {
StringBuilder K2 = a.K("Found JPEG segment indicator: ");
K2.append(Integer.toHexString(readByte3 & 255));
Log.d(TAG, K2.toString());
StringBuilder L2 = a.L("Found JPEG segment indicator: ");
L2.append(Integer.toHexString(readByte3 & 255));
Log.d(TAG, L2.toString());
}
int i6 = i5 + 1;
if (readByte3 != -39 && readByte3 != -38) {
int readUnsignedShort = byteOrderedDataInputStream.readUnsignedShort() - i3;
int i7 = i6 + i3;
if (z2) {
StringBuilder K3 = a.K("JPEG segment: ");
K3.append(Integer.toHexString(readByte3 & 255));
K3.append(" (length: ");
K3.append(readUnsignedShort + 2);
K3.append(")");
Log.d(TAG, K3.toString());
StringBuilder L3 = a.L("JPEG segment: ");
L3.append(Integer.toHexString(readByte3 & 255));
L3.append(" (length: ");
L3.append(readUnsignedShort + 2);
L3.append(")");
Log.d(TAG, L3.toString());
}
if (readUnsignedShort >= 0) {
if (readByte3 == -31) {
@ -2005,16 +2005,16 @@ public class ExifInterface {
}
}
} else {
StringBuilder K4 = a.K("Invalid marker:");
K4.append(Integer.toHexString(readByte2 & 255));
throw new IOException(K4.toString());
StringBuilder L4 = a.L("Invalid marker:");
L4.append(Integer.toHexString(readByte2 & 255));
throw new IOException(L4.toString());
}
}
byteOrderedDataInputStream.setByteOrder(this.mExifByteOrder);
} else {
StringBuilder K5 = a.K("Invalid marker: ");
K5.append(Integer.toHexString(readByte & 255));
throw new IOException(K5.toString());
StringBuilder L5 = a.L("Invalid marker: ");
L5.append(Integer.toHexString(readByte & 255));
throw new IOException(L5.toString());
}
}
@ -2073,9 +2073,9 @@ public class ExifInterface {
if (exifAttribute4 != null) {
int[] iArr = (int[]) exifAttribute4.getValue(this.mExifByteOrder);
if (iArr == null || iArr.length != 4) {
StringBuilder K = a.K("Invalid aspect frame values. frame=");
K.append(Arrays.toString(iArr));
Log.w(TAG, K.toString());
StringBuilder L = a.L("Invalid aspect frame values. frame=");
L.append(Arrays.toString(iArr));
Log.w(TAG, L.toString());
} else if (iArr[2] > iArr[0] && iArr[3] > iArr[1]) {
int i = (iArr[2] - iArr[0]) + 1;
int i2 = (iArr[3] - iArr[1]) + 1;
@ -2172,7 +2172,7 @@ public class ExifInterface {
byteOrderedDataInputStream.setByteOrder(ByteOrder.BIG_ENDIAN);
int readInt = byteOrderedDataInputStream.readInt();
if (z2) {
a.c0("numberOfDirectoryEntry: ", readInt, TAG);
a.d0("numberOfDirectoryEntry: ", readInt, TAG);
}
for (int i4 = 0; i4 < readInt; i4++) {
int readUnsignedShort = byteOrderedDataInputStream.readUnsignedShort();
@ -3049,26 +3049,26 @@ public class ExifInterface {
}
return;
}
StringBuilder K = a.K("Invalid start code: ");
K.append(Integer.toHexString(readUnsignedShort));
throw new IOException(K.toString());
StringBuilder L = a.L("Invalid start code: ");
L.append(Integer.toHexString(readUnsignedShort));
throw new IOException(L.toString());
}
private void printAttributes() {
for (int i = 0; i < this.mAttributes.length; i++) {
StringBuilder L = a.L("The size of tag group[", i, "]: ");
L.append(this.mAttributes[i].size());
Log.d(TAG, L.toString());
StringBuilder M = a.M("The size of tag group[", i, "]: ");
M.append(this.mAttributes[i].size());
Log.d(TAG, M.toString());
for (Map.Entry<String, ExifAttribute> entry : this.mAttributes[i].entrySet()) {
ExifAttribute value = entry.getValue();
StringBuilder K = a.K("tagName: ");
K.append(entry.getKey());
K.append(", tagType: ");
K.append(value.toString());
K.append(", tagValue: '");
K.append(value.getStringValue(this.mExifByteOrder));
K.append("'");
Log.d(TAG, K.toString());
StringBuilder L = a.L("tagName: ");
L.append(entry.getKey());
L.append(", tagType: ");
L.append(value.toString());
L.append(", tagValue: '");
L.append(value.getStringValue(this.mExifByteOrder));
L.append("'");
Log.d(TAG, L.toString());
}
}
}
@ -3086,9 +3086,9 @@ public class ExifInterface {
}
return ByteOrder.BIG_ENDIAN;
} else {
StringBuilder K = a.K("Invalid byte order: ");
K.append(Integer.toHexString(readShort));
throw new IOException(K.toString());
StringBuilder L = a.L("Invalid byte order: ");
L.append(Integer.toHexString(readShort));
throw new IOException(L.toString());
}
}
@ -3121,7 +3121,7 @@ public class ExifInterface {
if (byteOrderedDataInputStream.mPosition + 2 <= byteOrderedDataInputStream.mLength) {
short readShort = byteOrderedDataInputStream.readShort();
if (DEBUG) {
a.c0("numberOfDirectoryEntry: ", readShort, TAG);
a.d0("numberOfDirectoryEntry: ", readShort, TAG);
}
if ((readShort * 12) + byteOrderedDataInputStream.mPosition <= byteOrderedDataInputStream.mLength && readShort > 0) {
char c2 = 0;
@ -3155,7 +3155,7 @@ public class ExifInterface {
j = ((long) readInt) * ((long) iArr[readUnsignedShort2]);
if (j < 0 || j > 2147483647L) {
if (z3) {
a.c0("Skip the tag entry since the number of components is invalid: ", readInt, TAG);
a.d0("Skip the tag entry since the number of components is invalid: ", readInt, TAG);
}
z2 = false;
if (z2) {
@ -3164,7 +3164,7 @@ public class ExifInterface {
if (j > 4) {
int readInt2 = byteOrderedDataInputStream.readInt();
if (z3) {
a.c0("seek to data offset: ", readInt2, TAG);
a.d0("seek to data offset: ", readInt2, TAG);
}
i3 = readUnsignedShort2;
if (this.mMimeType == 7) {
@ -3187,7 +3187,7 @@ public class ExifInterface {
byteOrderedDataInputStream.seek(j4);
} else {
if (z3) {
a.c0("Skip the tag entry since data offset is invalid: ", readInt2, TAG);
a.d0("Skip the tag entry since data offset is invalid: ", readInt2, TAG);
}
byteOrderedDataInputStream.seek(peek);
}
@ -3283,18 +3283,18 @@ public class ExifInterface {
readShort = s3;
}
} else if (z3) {
StringBuilder K = a.K("Skip the tag entry since data format (");
K.append(IFD_FORMAT_NAMES[readUnsignedShort2]);
K.append(") is unexpected for tag: ");
K.append(exifTag2.name);
Log.d(TAG, K.toString());
StringBuilder L = a.L("Skip the tag entry since data format (");
L.append(IFD_FORMAT_NAMES[readUnsignedShort2]);
L.append(") is unexpected for tag: ");
L.append(exifTag2.name);
Log.d(TAG, L.toString());
}
}
}
s3 = readShort;
s2 = s4;
if (z3) {
a.c0("Skip the tag entry since data format is invalid: ", readUnsignedShort2, TAG);
a.d0("Skip the tag entry since data format is invalid: ", readUnsignedShort2, TAG);
}
j = 0;
z2 = false;
@ -3305,7 +3305,7 @@ public class ExifInterface {
i5 = i;
readShort = s3;
} else if (z3) {
a.c0("Skip the tag entry since tag number is not defined: ", readUnsignedShort, TAG);
a.d0("Skip the tag entry since tag number is not defined: ", readUnsignedShort, TAG);
}
s3 = readShort;
s2 = s4;
@ -3327,7 +3327,7 @@ public class ExifInterface {
long j6 = (long) readInt3;
if (j6 <= 0 || readInt3 >= byteOrderedDataInputStream.mLength) {
if (z4) {
a.c0("Stop reading file since a wrong offset may cause an infinite loop: ", readInt3, TAG);
a.d0("Stop reading file since a wrong offset may cause an infinite loop: ", readInt3, TAG);
}
} else if (!this.mAttributesOffsets.contains(Integer.valueOf(readInt3))) {
byteOrderedDataInputStream.seek(j6);
@ -3337,7 +3337,7 @@ public class ExifInterface {
readImageFileDirectory(byteOrderedDataInputStream, 5);
}
} else if (z4) {
a.c0("Stop reading file since re-reading an IFD may cause an infinite loop: ", readInt3, TAG);
a.d0("Stop reading file since re-reading an IFD may cause an infinite loop: ", readInt3, TAG);
}
}
}
@ -3748,9 +3748,9 @@ public class ExifInterface {
if (exifAttribute3.format == 5) {
Rational[] rationalArr = (Rational[]) exifAttribute3.getValue(this.mExifByteOrder);
if (rationalArr == null || rationalArr.length != 2) {
StringBuilder K = a.K("Invalid crop size values. cropSize=");
K.append(Arrays.toString(rationalArr));
Log.w(TAG, K.toString());
StringBuilder L = a.L("Invalid crop size values. cropSize=");
L.append(Arrays.toString(rationalArr));
Log.w(TAG, L.toString());
return;
}
exifAttribute2 = ExifAttribute.createURational(rationalArr[0], this.mExifByteOrder);
@ -3758,9 +3758,9 @@ public class ExifInterface {
} else {
int[] iArr = (int[]) exifAttribute3.getValue(this.mExifByteOrder);
if (iArr == null || iArr.length != 2) {
StringBuilder K2 = a.K("Invalid crop size values. cropSize=");
K2.append(Arrays.toString(iArr));
Log.w(TAG, K2.toString());
StringBuilder L2 = a.L("Invalid crop size values. cropSize=");
L2.append(Arrays.toString(iArr));
Log.w(TAG, L2.toString());
return;
}
exifAttribute2 = ExifAttribute.createUShort(iArr[0], this.mExifByteOrder);
@ -4029,14 +4029,14 @@ public class ExifInterface {
if (rationalArr != null && rationalArr.length == 3) {
return String.format("%02d:%02d:%02d", Integer.valueOf((int) (((float) rationalArr[0].numerator) / ((float) rationalArr[0].denominator))), Integer.valueOf((int) (((float) rationalArr[1].numerator) / ((float) rationalArr[1].denominator))), Integer.valueOf((int) (((float) rationalArr[2].numerator) / ((float) rationalArr[2].denominator))));
}
StringBuilder K = a.K("Invalid GPS Timestamp array. array=");
K.append(Arrays.toString(rationalArr));
Log.w(TAG, K.toString());
StringBuilder L = a.L("Invalid GPS Timestamp array. array=");
L.append(Arrays.toString(rationalArr));
Log.w(TAG, L.toString());
return null;
}
StringBuilder K2 = a.K("GPS Timestamp format is not rational. format=");
K2.append(exifAttribute.format);
Log.w(TAG, K2.toString());
StringBuilder L2 = a.L("GPS Timestamp format is not rational. format=");
L2.append(exifAttribute.format);
Log.w(TAG, L2.toString());
return null;
}
try {
@ -4160,9 +4160,9 @@ public class ExifInterface {
try {
return new double[]{convertRationalLatLonToDouble(attribute, attribute2), convertRationalLatLonToDouble(attribute3, attribute4)};
} catch (IllegalArgumentException unused) {
StringBuilder K = a.K("Latitude/longitude values are not parsable. ");
K.append(String.format("latValue=%s, latRef=%s, lngValue=%s, lngRef=%s", attribute, attribute2, attribute3, attribute4));
Log.w(TAG, K.toString());
StringBuilder L = a.L("Latitude/longitude values are not parsable. ");
L.append(String.format("latValue=%s, latRef=%s, lngValue=%s, lngRef=%s", attribute, attribute2, attribute3, attribute4));
Log.w(TAG, L.toString());
return null;
}
}
@ -4714,28 +4714,28 @@ public class ExifInterface {
if (i7 == i3 || i7 == 7 || i7 == i2) {
i = i7;
} else if (DEBUG) {
StringBuilder P = a.P("Given tag (", str4, ") value didn't match with one of expected formats: ");
StringBuilder Q = a.Q("Given tag (", str4, ") value didn't match with one of expected formats: ");
String[] strArr = IFD_FORMAT_NAMES;
P.append(strArr[exifTag.primaryFormat]);
Q.append(strArr[exifTag.primaryFormat]);
String str6 = "";
if (exifTag.secondaryFormat == -1) {
str3 = str6;
} else {
StringBuilder K = a.K(", ");
K.append(strArr[exifTag.secondaryFormat]);
str3 = K.toString();
StringBuilder L = a.L(", ");
L.append(strArr[exifTag.secondaryFormat]);
str3 = L.toString();
}
P.append(str3);
P.append(" (guess: ");
P.append(strArr[((Integer) guessDataFormat.first).intValue()]);
Q.append(str3);
Q.append(" (guess: ");
Q.append(strArr[((Integer) guessDataFormat.first).intValue()]);
if (((Integer) guessDataFormat.second).intValue() != -1) {
StringBuilder K2 = a.K(", ");
K2.append(strArr[((Integer) guessDataFormat.second).intValue()]);
str6 = K2.toString();
StringBuilder L2 = a.L(", ");
L2.append(strArr[((Integer) guessDataFormat.second).intValue()]);
str6 = L2.toString();
}
P.append(str6);
P.append(")");
Log.d(TAG, P.toString());
Q.append(str6);
Q.append(")");
Log.d(TAG, Q.toString());
}
} else {
i = exifTag.secondaryFormat;
@ -4782,7 +4782,7 @@ public class ExifInterface {
case 11:
default:
if (DEBUG) {
a.c0("Data format isn't one of expected formats: ", i, TAG);
a.d0("Data format isn't one of expected formats: ", i, TAG);
break;
} else {
continue;

View File

@ -40,11 +40,11 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
if (fragment != null) {
fragment.mBackStackNesting += i;
if (FragmentManager.isLoggingEnabled(2)) {
StringBuilder K = a.K("Bump nesting of ");
K.append(op.mFragment);
K.append(" to ");
K.append(op.mFragment.mBackStackNesting);
Log.v("FragmentManager", K.toString());
StringBuilder L = a.L("Bump nesting of ");
L.append(op.mFragment);
L.append(" to ");
L.append(op.mFragment.mBackStackNesting);
Log.v("FragmentManager", L.toString());
}
}
}
@ -100,10 +100,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
if (fragmentManager == null || fragmentManager == this.mManager) {
return super.detach(fragment);
}
StringBuilder K = a.K("Cannot detach Fragment attached to a different FragmentManager. Fragment ");
K.append(fragment.toString());
K.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Cannot detach Fragment attached to a different FragmentManager. Fragment ");
L.append(fragment.toString());
L.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(L.toString());
}
@Override // androidx.fragment.app.FragmentTransaction
@ -201,9 +201,9 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
str2 = "OP_SET_MAX_LIFECYCLE";
break;
default:
StringBuilder K = a.K("cmd=");
K.append(op.mCmd);
str2 = K.toString();
StringBuilder L = a.L("cmd=");
L.append(op.mCmd);
str2 = L.toString();
break;
}
printWriter.print(str);
@ -250,9 +250,9 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
break;
case 2:
default:
StringBuilder K = a.K("Unknown cmd: ");
K.append(op.mCmd);
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("Unknown cmd: ");
L.append(op.mCmd);
throw new IllegalArgumentException(L.toString());
case 3:
fragment.setNextAnim(op.mExitAnim);
this.mManager.removeFragment(fragment);
@ -311,9 +311,9 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
break;
case 2:
default:
StringBuilder K = a.K("Unknown cmd: ");
K.append(op.mCmd);
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("Unknown cmd: ");
L.append(op.mCmd);
throw new IllegalArgumentException(L.toString());
case 3:
fragment.setNextAnim(op.mPopEnterAnim);
this.mManager.addFragment(fragment);
@ -473,10 +473,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
if (fragmentManager == null || fragmentManager == this.mManager) {
return super.hide(fragment);
}
StringBuilder K = a.K("Cannot hide Fragment attached to a different FragmentManager. Fragment ");
K.append(fragment.toString());
K.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Cannot hide Fragment attached to a different FragmentManager. Fragment ");
L.append(fragment.toString());
L.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(L.toString());
}
public boolean interactsWith(int i) {
@ -538,10 +538,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
if (fragmentManager == null || fragmentManager == this.mManager) {
return super.remove(fragment);
}
StringBuilder K = a.K("Cannot remove Fragment attached to a different FragmentManager. Fragment ");
K.append(fragment.toString());
K.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Cannot remove Fragment attached to a different FragmentManager. Fragment ");
L.append(fragment.toString());
L.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(L.toString());
}
public void runOnCommitRunnables() {
@ -557,9 +557,9 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
@NonNull
public FragmentTransaction setMaxLifecycle(@NonNull Fragment fragment, @NonNull Lifecycle.State state) {
if (fragment.mFragmentManager != this.mManager) {
StringBuilder K = a.K("Cannot setMaxLifecycle for Fragment not attached to FragmentManager ");
K.append(this.mManager);
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("Cannot setMaxLifecycle for Fragment not attached to FragmentManager ");
L.append(this.mManager);
throw new IllegalArgumentException(L.toString());
} else if (state == Lifecycle.State.INITIALIZED && fragment.mState > -1) {
throw new IllegalArgumentException("Cannot set maximum Lifecycle to " + state + " after the Fragment has been created");
} else if (state != Lifecycle.State.DESTROYED) {
@ -585,10 +585,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
if (fragment == null || (fragmentManager = fragment.mFragmentManager) == null || fragmentManager == this.mManager) {
return super.setPrimaryNavigationFragment(fragment);
}
StringBuilder K = a.K("Cannot setPrimaryNavigation for Fragment attached to a different FragmentManager. Fragment ");
K.append(fragment.toString());
K.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Cannot setPrimaryNavigation for Fragment attached to a different FragmentManager. Fragment ");
L.append(fragment.toString());
L.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(L.toString());
}
@Override // androidx.fragment.app.FragmentTransaction
@ -598,10 +598,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme
if (fragmentManager == null || fragmentManager == this.mManager) {
return super.show(fragment);
}
StringBuilder K = a.K("Cannot show Fragment attached to a different FragmentManager. Fragment ");
K.append(fragment.toString());
K.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Cannot show Fragment attached to a different FragmentManager. Fragment ");
L.append(fragment.toString());
L.append(" is already attached to a FragmentManager.");
throw new IllegalStateException(L.toString());
}
public String toString() {

View File

@ -341,13 +341,13 @@ public class DefaultSpecialEffectsController extends SpecialEffectsController {
if (handlingImpl == null || handlingImpl2 == null || handlingImpl == handlingImpl2) {
return handlingImpl != null ? handlingImpl : handlingImpl2;
}
StringBuilder K = a.K("Mixing framework transitions and AndroidX transitions is not allowed. Fragment ");
K.append(getOperation().getFragment());
K.append(" returned Transition ");
K.append(this.mTransition);
K.append(" which uses a different Transition type than its shared element transition ");
K.append(this.mSharedElementTransition);
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("Mixing framework transitions and AndroidX transitions is not allowed. Fragment ");
L.append(getOperation().getFragment());
L.append(" returned Transition ");
L.append(this.mTransition);
L.append(" which uses a different Transition type than its shared element transition ");
L.append(this.mSharedElementTransition);
throw new IllegalArgumentException(L.toString());
}
@Nullable
@ -485,12 +485,12 @@ public class DefaultSpecialEffectsController extends SpecialEffectsController {
if (fragmentTransitionImpl2 == null) {
fragmentTransitionImpl2 = handlingImpl;
} else if (!(handlingImpl == null || fragmentTransitionImpl2 == handlingImpl)) {
StringBuilder K = a.K("Mixing framework transitions and AndroidX transitions is not allowed. Fragment ");
K.append(transitionInfo.getOperation().getFragment());
K.append(" returned Transition ");
K.append(transitionInfo.getTransition());
K.append(" which uses a different Transition type than other Fragments.");
throw new IllegalArgumentException(K.toString());
StringBuilder L = a.L("Mixing framework transitions and AndroidX transitions is not allowed. Fragment ");
L.append(transitionInfo.getOperation().getFragment());
L.append(" returned Transition ");
L.append(transitionInfo.getTransition());
L.append(" which uses a different Transition type than other Fragments.");
throw new IllegalArgumentException(L.toString());
}
}
}

View File

@ -191,10 +191,10 @@ public class Fragment implements ComponentCallbacks, View.OnCreateContextMenuLis
if (view != null) {
return view.findViewById(i);
}
StringBuilder K = a.K("Fragment ");
K.append(Fragment.this);
K.append(" does not have a view");
throw new IllegalStateException(K.toString());
StringBuilder L = a.L("Fragment ");
L.append(Fragment.this);
L.append(" does not have a view");
throw new IllegalStateException(L.toString());
}
@Override // androidx.fragment.app.FragmentContainer
@ -650,11 +650,11 @@ public class Fragment implements ComponentCallbacks, View.OnCreateContextMenuLis
@NonNull
public String generateActivityResultKey() {
StringBuilder K = a.K("fragment_");
K.append(this.mWho);
K.append("_rq#");
K.append(this.mNextLocalRequestCode.getAndIncrement());
return K.toString();
StringBuilder L = a.L("fragment_");
L.append(this.mWho);
L.append("_rq#");
L.append(this.mNextLocalRequestCode.getAndIncrement());
return L.toString();
}
@Nullable
@ -740,10 +740,10 @@ public class Fragment implements ComponentCallbacks, View.OnCreateContextMenuLis
}
}
if (application == null && FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("Could not find Application instance from Context ");
K.append(requireContext().getApplicationContext());
K.append(", you will not be able to use AndroidViewModel with the default ViewModelProvider.Factory");
Log.d(FragmentManager.TAG, K.toString());
StringBuilder L = a.L("Could not find Application instance from Context ");
L.append(requireContext().getApplicationContext());
L.append(", you will not be able to use AndroidViewModel with the default ViewModelProvider.Factory");
Log.d(FragmentManager.TAG, L.toString());
}
this.mDefaultFactory = new SavedStateViewModelFactory(application, this, getArguments());
}

View File

@ -139,7 +139,7 @@ public abstract class FragmentManager implements FragmentResultOwner {
int i = pollFirst.mRequestCode;
Fragment findFragmentByWho = FragmentManager.access$200(FragmentManager.this).findFragmentByWho(str);
if (findFragmentByWho == null) {
a.g0("Intent Sender result delivered for unknown Fragment ", str, FragmentManager.TAG);
a.h0("Intent Sender result delivered for unknown Fragment ", str, FragmentManager.TAG);
} else {
findFragmentByWho.onActivityResult(i, activityResult.getResultCode(), activityResult.getData());
}
@ -168,7 +168,7 @@ public abstract class FragmentManager implements FragmentResultOwner {
int i2 = pollFirst.mRequestCode;
Fragment findFragmentByWho = FragmentManager.access$200(FragmentManager.this).findFragmentByWho(str);
if (findFragmentByWho == null) {
a.g0("Permission request result delivered for unknown Fragment ", str, FragmentManager.TAG);
a.h0("Permission request result delivered for unknown Fragment ", str, FragmentManager.TAG);
} else {
findFragmentByWho.onRequestPermissionsResult(i2, strArr, iArr);
}
@ -307,7 +307,7 @@ public abstract class FragmentManager implements FragmentResultOwner {
int i = pollFirst.mRequestCode;
Fragment findFragmentByWho = FragmentManager.access$200(FragmentManager.this).findFragmentByWho(str);
if (findFragmentByWho == null) {
a.g0("Activity result delivered for unknown Fragment ", str, FragmentManager.TAG);
a.h0("Activity result delivered for unknown Fragment ", str, FragmentManager.TAG);
} else {
findFragmentByWho.onActivityResult(i, activityResult.getResultCode(), activityResult.getData());
}
@ -1315,7 +1315,7 @@ public abstract class FragmentManager implements FragmentResultOwner {
FragmentHostCallback<?> fragmentHostCallback2 = this.mHost;
if (fragmentHostCallback2 instanceof ActivityResultRegistryOwner) {
ActivityResultRegistry activityResultRegistry = ((ActivityResultRegistryOwner) fragmentHostCallback2).getActivityResultRegistry();
String s2 = a.s("FragmentManager:", fragment != null ? a.C(new StringBuilder(), fragment.mWho, ":") : "");
String s2 = a.s("FragmentManager:", fragment != null ? a.D(new StringBuilder(), fragment.mWho, ":") : "");
this.mStartActivityForResult = activityResultRegistry.register(a.s(s2, "StartActivityForResult"), new ActivityResultContracts.StartActivityForResult(), new AnonymousClass9());
this.mStartIntentSenderForResult = activityResultRegistry.register(a.s(s2, "StartIntentSenderForResult"), new FragmentIntentSenderContract(), new AnonymousClass10());
this.mRequestPermissions = activityResultRegistry.register(a.s(s2, "RequestPermissions"), new ActivityResultContracts.RequestMultiplePermissions(), new AnonymousClass11());
@ -2409,11 +2409,11 @@ public abstract class FragmentManager implements FragmentResultOwner {
Fragment fragment = fragmentStateManager.getFragment();
fragment.mFragmentManager = this;
if (isLoggingEnabled(2)) {
StringBuilder K = a.K("restoreSaveState: active (");
K.append(fragment.mWho);
K.append("): ");
K.append(fragment);
Log.v(TAG, K.toString());
StringBuilder L = a.L("restoreSaveState: active (");
L.append(fragment.mWho);
L.append("): ");
L.append(fragment);
Log.v(TAG, L.toString());
}
fragmentStateManager.restoreState(this.mHost.getContext().getClassLoader());
this.mFragmentStore.makeActive(fragmentStateManager);
@ -2445,11 +2445,11 @@ public abstract class FragmentManager implements FragmentResultOwner {
}
BackStackRecord instantiate = backStackStateArr[i].instantiate(this);
if (isLoggingEnabled(2)) {
StringBuilder L = a.L("restoreAllState: back stack #", i, " (index ");
L.append(instantiate.mIndex);
L.append("): ");
L.append(instantiate);
Log.v(TAG, L.toString());
StringBuilder M = a.M("restoreAllState: back stack #", i, " (index ");
M.append(instantiate.mIndex);
M.append("): ");
M.append(instantiate);
Log.v(TAG, M.toString());
PrintWriter printWriter = new PrintWriter(new LogWriter(TAG));
instantiate.dump(" ", printWriter, false);
printWriter.close();
@ -2508,9 +2508,9 @@ public abstract class FragmentManager implements FragmentResultOwner {
for (int i = 0; i < size; i++) {
backStackStateArr[i] = new BackStackState(this.mBackStack.get(i));
if (isLoggingEnabled(2)) {
StringBuilder L = a.L("saveAllState: adding back stack #", i, ": ");
L.append(this.mBackStack.get(i));
Log.v(TAG, L.toString());
StringBuilder M = a.M("saveAllState: adding back stack #", i, ": ");
M.append(this.mBackStack.get(i));
Log.v(TAG, M.toString());
}
}
}

View File

@ -183,9 +183,9 @@ public class FragmentStateManager {
public void activityCreated() {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("moveto ACTIVITY_CREATED: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("moveto ACTIVITY_CREATED: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
Fragment fragment = this.mFragment;
fragment.performActivityCreated(fragment.mSavedFragmentState);
@ -202,9 +202,9 @@ public class FragmentStateManager {
public void attach() {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("moveto ATTACHED: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("moveto ATTACHED: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
Fragment fragment = this.mFragment;
Fragment fragment2 = fragment.mTarget;
@ -217,20 +217,20 @@ public class FragmentStateManager {
fragment3.mTarget = null;
fragmentStateManager = fragmentStateManager2;
} else {
StringBuilder K2 = a.K("Fragment ");
K2.append(this.mFragment);
K2.append(" declared target fragment ");
K2.append(this.mFragment.mTarget);
K2.append(" that does not belong to this FragmentManager!");
throw new IllegalStateException(K2.toString());
StringBuilder L2 = a.L("Fragment ");
L2.append(this.mFragment);
L2.append(" declared target fragment ");
L2.append(this.mFragment.mTarget);
L2.append(" that does not belong to this FragmentManager!");
throw new IllegalStateException(L2.toString());
}
} else {
String str = fragment.mTargetWho;
if (str != null && (fragmentStateManager = this.mFragmentStore.getFragmentStateManager(str)) == null) {
StringBuilder K3 = a.K("Fragment ");
K3.append(this.mFragment);
K3.append(" declared target fragment ");
throw new IllegalStateException(a.C(K3, this.mFragment.mTargetWho, " that does not belong to this FragmentManager!"));
StringBuilder L3 = a.L("Fragment ");
L3.append(this.mFragment);
L3.append(" declared target fragment ");
throw new IllegalStateException(a.D(L3, this.mFragment.mTargetWho, " that does not belong to this FragmentManager!"));
}
}
if (fragmentStateManager != null && (FragmentManager.USE_STATE_MANAGER || fragmentStateManager.getFragment().mState < 1)) {
@ -297,18 +297,18 @@ public class FragmentStateManager {
i = Math.min(i, 4);
}
if (FragmentManager.isLoggingEnabled(2)) {
StringBuilder L = a.L("computeExpectedState() of ", i, " for ");
L.append(this.mFragment);
Log.v("FragmentManager", L.toString());
StringBuilder M = a.M("computeExpectedState() of ", i, " for ");
M.append(this.mFragment);
Log.v("FragmentManager", M.toString());
}
return i;
}
public void create() {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("moveto CREATED: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("moveto CREATED: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
Fragment fragment = this.mFragment;
if (!fragment.mIsCreated) {
@ -328,9 +328,9 @@ public class FragmentStateManager {
String str;
if (!this.mFragment.mFromLayout) {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("moveto CREATE_VIEW: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("moveto CREATE_VIEW: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
Fragment fragment = this.mFragment;
LayoutInflater performGetLayoutInflater = fragment.performGetLayoutInflater(fragment.mSavedFragmentState);
@ -352,20 +352,20 @@ public class FragmentStateManager {
} catch (Resources.NotFoundException unused) {
str = EnvironmentCompat.MEDIA_UNKNOWN;
}
StringBuilder K2 = a.K("No view found for id 0x");
K2.append(Integer.toHexString(this.mFragment.mContainerId));
K2.append(" (");
K2.append(str);
K2.append(") for fragment ");
K2.append(this.mFragment);
throw new IllegalArgumentException(K2.toString());
StringBuilder L2 = a.L("No view found for id 0x");
L2.append(Integer.toHexString(this.mFragment.mContainerId));
L2.append(" (");
L2.append(str);
L2.append(") for fragment ");
L2.append(this.mFragment);
throw new IllegalArgumentException(L2.toString());
}
}
} else {
StringBuilder K3 = a.K("Cannot create fragment ");
K3.append(this.mFragment);
K3.append(" for a container view with no id");
throw new IllegalArgumentException(K3.toString());
StringBuilder L3 = a.L("Cannot create fragment ");
L3.append(this.mFragment);
L3.append(" for a container view with no id");
throw new IllegalArgumentException(L3.toString());
}
}
}
@ -425,9 +425,9 @@ public class FragmentStateManager {
public void destroy() {
Fragment findActiveFragment;
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("movefrom CREATED: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("movefrom CREATED: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
Fragment fragment = this.mFragment;
boolean z2 = true;
@ -471,9 +471,9 @@ public class FragmentStateManager {
public void destroyFragmentView() {
View view;
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("movefrom CREATE_VIEW: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("movefrom CREATE_VIEW: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
Fragment fragment = this.mFragment;
ViewGroup viewGroup = fragment.mContainer;
@ -492,9 +492,9 @@ public class FragmentStateManager {
public void detach() {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("movefrom ATTACHED: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("movefrom ATTACHED: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
this.mFragment.performDetach();
boolean z2 = false;
@ -509,9 +509,9 @@ public class FragmentStateManager {
}
if (z2 || this.mFragmentStore.getNonConfig().shouldDestroy(this.mFragment)) {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K2 = a.K("initState called for fragment: ");
K2.append(this.mFragment);
Log.d("FragmentManager", K2.toString());
StringBuilder L2 = a.L("initState called for fragment: ");
L2.append(this.mFragment);
Log.d("FragmentManager", L2.toString());
}
this.mFragment.initState();
}
@ -521,9 +521,9 @@ public class FragmentStateManager {
Fragment fragment = this.mFragment;
if (fragment.mFromLayout && fragment.mInLayout && !fragment.mPerformedCreateView) {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("moveto CREATE_VIEW: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("moveto CREATE_VIEW: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
Fragment fragment2 = this.mFragment;
fragment2.performCreateView(fragment2.performGetLayoutInflater(fragment2.mSavedFragmentState), null, this.mFragment.mSavedFragmentState);
@ -659,17 +659,17 @@ public class FragmentStateManager {
this.mMovingToState = z2;
}
} else if (FragmentManager.isLoggingEnabled(2)) {
StringBuilder K = a.K("Ignoring re-entrant call to moveToExpectedState() for ");
K.append(getFragment());
Log.v("FragmentManager", K.toString());
StringBuilder L = a.L("Ignoring re-entrant call to moveToExpectedState() for ");
L.append(getFragment());
Log.v("FragmentManager", L.toString());
}
}
public void pause() {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("movefrom RESUMED: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("movefrom RESUMED: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
this.mFragment.performPause();
this.mDispatcher.dispatchOnFragmentPaused(this.mFragment, false);
@ -706,9 +706,9 @@ public class FragmentStateManager {
public void resume() {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("moveto RESUMED: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("moveto RESUMED: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
View focusedView = this.mFragment.getFocusedView();
if (focusedView != null && isFragmentViewChild(focusedView)) {
@ -788,9 +788,9 @@ public class FragmentStateManager {
public void start() {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("moveto STARTED: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("moveto STARTED: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
this.mFragment.performStart();
this.mDispatcher.dispatchOnFragmentStarted(this.mFragment, false);
@ -798,9 +798,9 @@ public class FragmentStateManager {
public void stop() {
if (FragmentManager.isLoggingEnabled(3)) {
StringBuilder K = a.K("movefrom STARTED: ");
K.append(this.mFragment);
Log.d("FragmentManager", K.toString());
StringBuilder L = a.L("movefrom STARTED: ");
L.append(this.mFragment);
Log.d("FragmentManager", L.toString());
}
this.mFragment.performStop();
this.mDispatcher.dispatchOnFragmentStopped(this.mFragment, false);

Some files were not shown because too many files have changed in this diff Show More