Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
package com.google.android.gms.internal.ads;
import android.text.Spannable;
import android.text.style.RelativeSizeSpan;
/* loaded from: classes3.dex */
public final class zzct {
public static void zza(Spannable spannable, float f, int i, int i2, int i3) {
for (RelativeSizeSpan relativeSizeSpan : (RelativeSizeSpan[]) spannable.getSpans(i, i2, RelativeSizeSpan.class)) {
if (spannable.getSpanStart(relativeSizeSpan) <= i && spannable.getSpanEnd(relativeSizeSpan) >= i2) {
f *= relativeSizeSpan.getSizeChange();
}
zzc(spannable, relativeSizeSpan, i, i2, 33);
}
spannable.setSpan(new RelativeSizeSpan(f), i, i2, 33);
}
public static void zzb(Spannable spannable, Object obj, int i, int i2, int i3) {
for (Object obj2 : spannable.getSpans(i, i2, obj.getClass())) {
zzc(spannable, obj2, i, i2, 33);
}
spannable.setSpan(obj, i, i2, 33);
}
private static void zzc(Spannable spannable, Object obj, int i, int i2, int i3) {
if (spannable.getSpanStart(obj) == i && spannable.getSpanEnd(obj) == i2 && spannable.getSpanFlags(obj) == 33) {
spannable.removeSpan(obj);
}
}
}