* Decompile and recreate Soul Browser v1.4.85 with APK CI builds Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix CI build: include bundled google.jks and remove PR trigger The apktool build failed in CI because app/unknown/.../google.jks was excluded by the *.jks gitignore rule. Whitelist app-bundled JKS files and commit the missing resource. Also remove the redundant pull_request workflow trigger. Co-authored-by: KaKi87 <KaKi87@pm.me> * Change package ID to com.github.kaki87.soulbrowser Rename the application ID so the rebuilt APK can be installed alongside the original Soul Browser from Google Play. - Update AndroidManifest package, permissions, providers, and actions - Update R class references in smali (com/github/kaki87/soulbrowser/R) - Update shortcuts.xml targetPackage - Rename app label to "Soul Rebuild" for easy identification Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix install compatibility: remove split APK metadata and bundle native libs The rebuilt APK still declared requiredSplitTypes and Play Store split metadata, causing Android to reject standalone installs as incompatible. - Remove requiredSplitTypes and split-related manifest meta-data - Merge native libs from all ABI splits with uncompressed storage - Page-align before signing for extractNativeLibs=false - Add .so to apktool doNotCompress list Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix install failure: use apksigner v2/v3 and bundle arm64 native libs Target SDK 36 requires APK Signature Scheme v2+, but jarsigner only produces v1 signatures, causing Android to reject the install. - Sign with apksigner (v1+v2+v3) instead of jarsigner - Add arm64-v8a native libraries from universal Soul Browser 1.4.79 - Set extractNativeLibs=true for reliable sideload installs - Commit stable debug keystore for consistent signatures across builds Co-authored-by: KaKi87 <KaKi87@pm.me> * Add committed debug keystore for consistent APK signatures Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix startup crash: use original classes2.dex desugar libraries Apktool recompiles smali_classes2 into a broken classes2.dex, causing ClassNotFoundException for j$.com.android.tools.r8.a at ML Kit init. Inject the original classes2.dex (Java 8+ desugar libs) after apktool build instead of using the recompiled version. Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix missing drawable resources from density split APKs The base APK is an app bundle module; density-specific drawables like seek_thumb_nor_b live in config.xhdpi.apk and were missing after rebuild, causing Resources$NotFoundException at runtime. - Merge non-9-patch resources from split APKs before apktool build - Sync public.xml IDs from R smali only when backing files exist - Add 713 density-specific resource IDs to public.xml Co-authored-by: KaKi87 <KaKi87@pm.me> --------- Co-authored-by: Cursor Agent <cursoragent@cursor.com>
636 lines
23 KiB
Java
636 lines
23 KiB
Java
package j$.util.stream;
|
|
|
|
import j$.util.Spliterator;
|
|
import j$.util.stream.Stream;
|
|
import java.util.IntSummaryStatistics;
|
|
import java.util.Iterator;
|
|
import java.util.OptionalDouble;
|
|
import java.util.OptionalInt;
|
|
import java.util.function.BiConsumer;
|
|
import java.util.function.IntBinaryOperator;
|
|
import java.util.function.IntConsumer;
|
|
import java.util.function.IntFunction;
|
|
import java.util.function.IntPredicate;
|
|
import java.util.function.IntToDoubleFunction;
|
|
import java.util.function.IntToLongFunction;
|
|
import java.util.function.IntUnaryOperator;
|
|
import java.util.function.ObjIntConsumer;
|
|
import java.util.function.Supplier;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface IntStream extends BaseStream<Integer, IntStream> {
|
|
IntStream a();
|
|
|
|
DoubleStream asDoubleStream();
|
|
|
|
LongStream asLongStream();
|
|
|
|
j$.util.c0 average();
|
|
|
|
IntStream b();
|
|
|
|
Stream boxed();
|
|
|
|
IntStream c();
|
|
|
|
Object collect(Supplier supplier, ObjIntConsumer objIntConsumer, BiConsumer biConsumer);
|
|
|
|
long count();
|
|
|
|
IntStream distinct();
|
|
|
|
j$.util.d0 findAny();
|
|
|
|
j$.util.d0 findFirst();
|
|
|
|
void forEach(IntConsumer intConsumer);
|
|
|
|
void forEachOrdered(IntConsumer intConsumer);
|
|
|
|
DoubleStream g();
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
/* renamed from: iterator */
|
|
Iterator<Integer> iterator2();
|
|
|
|
LongStream k();
|
|
|
|
IntStream limit(long j);
|
|
|
|
IntStream map(IntUnaryOperator intUnaryOperator);
|
|
|
|
Stream mapToObj(IntFunction intFunction);
|
|
|
|
j$.util.d0 max();
|
|
|
|
j$.util.d0 min();
|
|
|
|
boolean p();
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
IntStream parallel();
|
|
|
|
IntStream peek(IntConsumer intConsumer);
|
|
|
|
IntStream r(i0 i0Var);
|
|
|
|
int reduce(int i, IntBinaryOperator intBinaryOperator);
|
|
|
|
j$.util.d0 reduce(IntBinaryOperator intBinaryOperator);
|
|
|
|
boolean s();
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
IntStream sequential();
|
|
|
|
IntStream skip(long j);
|
|
|
|
IntStream sorted();
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
Spliterator.OfInt spliterator();
|
|
|
|
int sum();
|
|
|
|
j$.util.z summaryStatistics();
|
|
|
|
int[] toArray();
|
|
|
|
boolean x();
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final /* synthetic */ class Wrapper implements java.util.stream.IntStream {
|
|
public /* synthetic */ Wrapper() {
|
|
}
|
|
|
|
public static /* synthetic */ java.util.stream.IntStream convert(IntStream intStream) {
|
|
if (intStream == null) {
|
|
return null;
|
|
}
|
|
return intStream instanceof VivifiedWrapper ? ((VivifiedWrapper) intStream).f21378a : new Wrapper();
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ boolean allMatch(IntPredicate intPredicate) {
|
|
return IntStream.this.p();
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ boolean anyMatch(IntPredicate intPredicate) {
|
|
return IntStream.this.x();
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.DoubleStream asDoubleStream() {
|
|
return a0.f(IntStream.this.asDoubleStream());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.LongStream asLongStream() {
|
|
return i1.f(IntStream.this.asLongStream());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ OptionalDouble average() {
|
|
return j$.com.android.tools.r8.a.C(IntStream.this.average());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.Stream boxed() {
|
|
return Stream.Wrapper.convert(IntStream.this.boxed());
|
|
}
|
|
|
|
@Override // java.util.stream.BaseStream, java.lang.AutoCloseable
|
|
public final /* synthetic */ void close() {
|
|
IntStream.this.close();
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ Object collect(Supplier supplier, ObjIntConsumer objIntConsumer, BiConsumer biConsumer) {
|
|
return IntStream.this.collect(supplier, objIntConsumer, biConsumer);
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ long count() {
|
|
return IntStream.this.count();
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.IntStream distinct() {
|
|
return convert(IntStream.this.distinct());
|
|
}
|
|
|
|
public final /* synthetic */ java.util.stream.IntStream dropWhile(IntPredicate intPredicate) {
|
|
return convert(IntStream.this.c());
|
|
}
|
|
|
|
public final /* synthetic */ boolean equals(Object obj) {
|
|
IntStream intStream = IntStream.this;
|
|
if (obj instanceof Wrapper) {
|
|
obj = IntStream.this;
|
|
}
|
|
return intStream.equals(obj);
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.IntStream filter(IntPredicate intPredicate) {
|
|
return convert(IntStream.this.b());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ OptionalInt findAny() {
|
|
return j$.com.android.tools.r8.a.D(IntStream.this.findAny());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ OptionalInt findFirst() {
|
|
return j$.com.android.tools.r8.a.D(IntStream.this.findFirst());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ void forEach(IntConsumer intConsumer) {
|
|
IntStream.this.forEach(intConsumer);
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ void forEachOrdered(IntConsumer intConsumer) {
|
|
IntStream.this.forEachOrdered(intConsumer);
|
|
}
|
|
|
|
public final /* synthetic */ int hashCode() {
|
|
return IntStream.this.hashCode();
|
|
}
|
|
|
|
@Override // java.util.stream.BaseStream
|
|
public final /* synthetic */ boolean isParallel() {
|
|
return IntStream.this.isParallel();
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream, java.util.stream.BaseStream
|
|
public final /* synthetic */ Iterator<Integer> iterator() {
|
|
return IntStream.this.iterator2();
|
|
}
|
|
|
|
/* JADX WARN: Type inference failed for: r0v1, types: [j$.util.PrimitiveIterator$OfInt] */
|
|
@Override // java.util.stream.IntStream, java.util.stream.BaseStream
|
|
/* renamed from: iterator */
|
|
public final /* synthetic */ Iterator<Integer> iterator2() {
|
|
?? iterator2 = IntStream.this.iterator2();
|
|
if (iterator2 == 0) {
|
|
return null;
|
|
}
|
|
return iterator2 instanceof j$.util.j0 ? ((j$.util.j0) iterator2).f21354a : new j$.util.k0(iterator2);
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.IntStream limit(long j) {
|
|
return convert(IntStream.this.limit(j));
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.IntStream map(IntUnaryOperator intUnaryOperator) {
|
|
return convert(IntStream.this.map(intUnaryOperator));
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.DoubleStream mapToDouble(IntToDoubleFunction intToDoubleFunction) {
|
|
return a0.f(IntStream.this.g());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.LongStream mapToLong(IntToLongFunction intToLongFunction) {
|
|
return i1.f(IntStream.this.k());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.Stream mapToObj(IntFunction intFunction) {
|
|
return Stream.Wrapper.convert(IntStream.this.mapToObj(intFunction));
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ OptionalInt max() {
|
|
return j$.com.android.tools.r8.a.D(IntStream.this.max());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ OptionalInt min() {
|
|
return j$.com.android.tools.r8.a.D(IntStream.this.min());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ boolean noneMatch(IntPredicate intPredicate) {
|
|
return IntStream.this.s();
|
|
}
|
|
|
|
/* JADX WARN: Type inference failed for: r2v2, types: [java.util.stream.IntStream, java.util.stream.BaseStream] */
|
|
@Override // java.util.stream.BaseStream
|
|
public final /* synthetic */ java.util.stream.IntStream onClose(Runnable runnable) {
|
|
return f.f(IntStream.this.onClose(runnable));
|
|
}
|
|
|
|
/* JADX WARN: Type inference failed for: r0v2, types: [java.util.stream.IntStream, java.util.stream.BaseStream] */
|
|
@Override // java.util.stream.IntStream, java.util.stream.BaseStream
|
|
public final /* synthetic */ java.util.stream.IntStream parallel() {
|
|
return f.f(IntStream.this.parallel());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream, java.util.stream.BaseStream
|
|
/* renamed from: parallel */
|
|
public final /* synthetic */ java.util.stream.IntStream parallel2() {
|
|
return convert(IntStream.this.parallel());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.IntStream peek(IntConsumer intConsumer) {
|
|
return convert(IntStream.this.peek(intConsumer));
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ int reduce(int i, IntBinaryOperator intBinaryOperator) {
|
|
return IntStream.this.reduce(i, intBinaryOperator);
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ OptionalInt reduce(IntBinaryOperator intBinaryOperator) {
|
|
return j$.com.android.tools.r8.a.D(IntStream.this.reduce(intBinaryOperator));
|
|
}
|
|
|
|
/* JADX WARN: Type inference failed for: r0v2, types: [java.util.stream.IntStream, java.util.stream.BaseStream] */
|
|
@Override // java.util.stream.IntStream, java.util.stream.BaseStream
|
|
public final /* synthetic */ java.util.stream.IntStream sequential() {
|
|
return f.f(IntStream.this.sequential());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream, java.util.stream.BaseStream
|
|
/* renamed from: sequential */
|
|
public final /* synthetic */ java.util.stream.IntStream sequential2() {
|
|
return convert(IntStream.this.sequential());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.IntStream skip(long j) {
|
|
return convert(IntStream.this.skip(j));
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ java.util.stream.IntStream sorted() {
|
|
return convert(IntStream.this.sorted());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream, java.util.stream.BaseStream
|
|
public final /* synthetic */ java.util.Spliterator<Integer> spliterator() {
|
|
return j$.util.t0.a(IntStream.this.spliterator());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream, java.util.stream.BaseStream
|
|
/* renamed from: spliterator */
|
|
public final /* synthetic */ java.util.Spliterator<Integer> spliterator2() {
|
|
return Spliterator.Wrapper.convert(IntStream.this.spliterator());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ int sum() {
|
|
return IntStream.this.sum();
|
|
}
|
|
|
|
public final /* synthetic */ java.util.stream.IntStream takeWhile(IntPredicate intPredicate) {
|
|
return convert(IntStream.this.a());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final /* synthetic */ int[] toArray() {
|
|
return IntStream.this.toArray();
|
|
}
|
|
|
|
/* JADX WARN: Type inference failed for: r0v2, types: [java.util.stream.IntStream, java.util.stream.BaseStream] */
|
|
@Override // java.util.stream.BaseStream
|
|
public final /* synthetic */ java.util.stream.IntStream unordered() {
|
|
return f.f(IntStream.this.unordered());
|
|
}
|
|
|
|
@Override // java.util.stream.IntStream
|
|
public final IntSummaryStatistics summaryStatistics() {
|
|
IntStream.this.summaryStatistics();
|
|
throw new Error("Java 8+ API desugaring (library desugaring) cannot convert to java.util.IntSummaryStatistics");
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
/* JADX WARN: Type inference failed for: r1v0, types: [j$.util.stream.i0, java.lang.Object] */
|
|
@Override // java.util.stream.IntStream
|
|
public final java.util.stream.IntStream flatMap(IntFunction intFunction) {
|
|
IntStream intStream = IntStream.this;
|
|
?? obj = new Object();
|
|
obj.f21434a = intFunction;
|
|
return convert(intStream.r(obj));
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final /* synthetic */ class VivifiedWrapper implements IntStream {
|
|
|
|
/* renamed from: a */
|
|
public final /* synthetic */ java.util.stream.IntStream f21378a;
|
|
|
|
public /* synthetic */ VivifiedWrapper(java.util.stream.IntStream intStream) {
|
|
this.f21378a = intStream;
|
|
}
|
|
|
|
public static /* synthetic */ IntStream convert(java.util.stream.IntStream intStream) {
|
|
if (intStream == null) {
|
|
return null;
|
|
}
|
|
return intStream instanceof Wrapper ? IntStream.this : new VivifiedWrapper(intStream);
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ IntStream a() {
|
|
return convert(this.f21378a.takeWhile(null));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ DoubleStream asDoubleStream() {
|
|
return z.f(this.f21378a.asDoubleStream());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ LongStream asLongStream() {
|
|
return h1.f(this.f21378a.asLongStream());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ j$.util.c0 average() {
|
|
return j$.com.android.tools.r8.a.y(this.f21378a.average());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ IntStream b() {
|
|
return convert(this.f21378a.filter(null));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ Stream boxed() {
|
|
return z6.f(this.f21378a.boxed());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ IntStream c() {
|
|
return convert(this.f21378a.dropWhile(null));
|
|
}
|
|
|
|
@Override // java.lang.AutoCloseable
|
|
public final /* synthetic */ void close() {
|
|
this.f21378a.close();
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ Object collect(Supplier supplier, ObjIntConsumer objIntConsumer, BiConsumer biConsumer) {
|
|
return this.f21378a.collect(supplier, objIntConsumer, biConsumer);
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ long count() {
|
|
return this.f21378a.count();
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ IntStream distinct() {
|
|
return convert(this.f21378a.distinct());
|
|
}
|
|
|
|
public final /* synthetic */ boolean equals(Object obj) {
|
|
java.util.stream.IntStream intStream = this.f21378a;
|
|
if (obj instanceof VivifiedWrapper) {
|
|
obj = ((VivifiedWrapper) obj).f21378a;
|
|
}
|
|
return intStream.equals(obj);
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ j$.util.d0 findAny() {
|
|
return j$.com.android.tools.r8.a.z(this.f21378a.findAny());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ j$.util.d0 findFirst() {
|
|
return j$.com.android.tools.r8.a.z(this.f21378a.findFirst());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ void forEach(IntConsumer intConsumer) {
|
|
this.f21378a.forEach(intConsumer);
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ void forEachOrdered(IntConsumer intConsumer) {
|
|
this.f21378a.forEachOrdered(intConsumer);
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ DoubleStream g() {
|
|
return z.f(this.f21378a.mapToDouble(null));
|
|
}
|
|
|
|
public final /* synthetic */ int hashCode() {
|
|
return this.f21378a.hashCode();
|
|
}
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
public final /* synthetic */ boolean isParallel() {
|
|
return this.f21378a.isParallel();
|
|
}
|
|
|
|
/* JADX WARN: Type inference failed for: r0v1, types: [java.util.PrimitiveIterator$OfInt] */
|
|
@Override // j$.util.stream.IntStream, j$.util.stream.BaseStream
|
|
/* renamed from: iterator */
|
|
public final /* synthetic */ Iterator<Integer> iterator2() {
|
|
?? it = this.f21378a.iterator();
|
|
if (it == 0) {
|
|
return null;
|
|
}
|
|
return it instanceof j$.util.k0 ? ((j$.util.k0) it).f21355a : new j$.util.j0(it);
|
|
}
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
/* renamed from: iterator */
|
|
public final /* synthetic */ Iterator<Integer> iterator2() {
|
|
return this.f21378a.iterator();
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ LongStream k() {
|
|
return h1.f(this.f21378a.mapToLong(null));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ IntStream limit(long j) {
|
|
return convert(this.f21378a.limit(j));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ IntStream map(IntUnaryOperator intUnaryOperator) {
|
|
return convert(this.f21378a.map(intUnaryOperator));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ Stream mapToObj(IntFunction intFunction) {
|
|
return z6.f(this.f21378a.mapToObj(intFunction));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ j$.util.d0 max() {
|
|
return j$.com.android.tools.r8.a.z(this.f21378a.max());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ j$.util.d0 min() {
|
|
return j$.com.android.tools.r8.a.z(this.f21378a.min());
|
|
}
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
public final /* synthetic */ BaseStream onClose(Runnable runnable) {
|
|
return e.f(this.f21378a.onClose(runnable));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ boolean p() {
|
|
return this.f21378a.allMatch(null);
|
|
}
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
public final /* synthetic */ BaseStream parallel() {
|
|
return e.f(this.f21378a.parallel());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream, j$.util.stream.BaseStream
|
|
public final /* synthetic */ IntStream parallel() {
|
|
return convert(this.f21378a.parallel());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ IntStream peek(IntConsumer intConsumer) {
|
|
return convert(this.f21378a.peek(intConsumer));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ int reduce(int i, IntBinaryOperator intBinaryOperator) {
|
|
return this.f21378a.reduce(i, intBinaryOperator);
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ j$.util.d0 reduce(IntBinaryOperator intBinaryOperator) {
|
|
return j$.com.android.tools.r8.a.z(this.f21378a.reduce(intBinaryOperator));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ boolean s() {
|
|
return this.f21378a.noneMatch(null);
|
|
}
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
public final /* synthetic */ BaseStream sequential() {
|
|
return e.f(this.f21378a.sequential());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream, j$.util.stream.BaseStream
|
|
public final /* synthetic */ IntStream sequential() {
|
|
return convert(this.f21378a.sequential());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ IntStream skip(long j) {
|
|
return convert(this.f21378a.skip(j));
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ IntStream sorted() {
|
|
return convert(this.f21378a.sorted());
|
|
}
|
|
|
|
/* JADX WARN: Type inference failed for: r0v1, types: [java.util.Spliterator$OfInt] */
|
|
@Override // j$.util.stream.IntStream, j$.util.stream.BaseStream
|
|
public final /* synthetic */ Spliterator.OfInt spliterator() {
|
|
return j$.util.s0.a(this.f21378a.spliterator());
|
|
}
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
public final /* synthetic */ Spliterator spliterator() {
|
|
return j$.util.y0.a(this.f21378a.spliterator());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ int sum() {
|
|
return this.f21378a.sum();
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ int[] toArray() {
|
|
return this.f21378a.toArray();
|
|
}
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
public final /* synthetic */ BaseStream unordered() {
|
|
return e.f(this.f21378a.unordered());
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final /* synthetic */ boolean x() {
|
|
return this.f21378a.anyMatch(null);
|
|
}
|
|
|
|
@Override // j$.util.stream.IntStream
|
|
public final j$.util.z summaryStatistics() {
|
|
this.f21378a.summaryStatistics();
|
|
throw new Error("Java 8+ API desugaring (library desugaring) cannot convert from java.util.IntSummaryStatistics");
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
/* JADX WARN: Type inference failed for: r1v0, types: [j$.util.stream.i0, java.lang.Object, java.util.function.IntFunction] */
|
|
@Override // j$.util.stream.IntStream
|
|
public final IntStream r(i0 i0Var) {
|
|
java.util.stream.IntStream intStream = this.f21378a;
|
|
?? obj = new Object();
|
|
obj.f21434a = i0Var;
|
|
return convert(intStream.flatMap(obj));
|
|
}
|
|
}
|
|
}
|