/aosp_15_r20/art/test/806-TooWideClassInstanceOf/src/ |
H A D | Main.java | 18 class B1 extends A {} 19 class B2 extends A {} 20 class C1 extends B1 {} 21 class C2 extends B1 {} 22 class D1 extends C1 {} 23 class D2 extends C2 {} 24 class E1 extends D2 {} 25 class E2 extends D1 {} 26 class E3 extends D2 {} 27 class E4 extends D1 {} [all …]
|
/aosp_15_r20/packages/apps/Settings/src/com/android/settings/ |
D | Settings.java | 47 public class Settings extends SettingsActivity { 53 public static class MemtagPageActivity extends SettingsActivity { /* empty */} 54 public static class BluetoothSettingsActivity extends SettingsActivity { /* empty */ } 55 public static class BluetoothDashboardActivity extends SettingsActivity { /* empty */ } 56 public static class CreateShortcutActivity extends SettingsActivity { /* empty */ } 57 public static class FaceSettingsActivity extends SettingsActivity { /* empty */ } 59 public static class FaceSettingsInternalActivity extends SettingsActivity { /* empty */ } 60 public static class FingerprintSettingsActivity extends SettingsActivity { /* empty */ } 61 public static class FingerprintSettingsActivityV2 extends SettingsActivity { /* empty */ } 62 public static class CombinedBiometricSettingsActivity extends SettingsActivity { /* empty */ } [all …]
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/SystemUI-core/android_common/kapt/gen/stubs/com/android/systemui/util/kotlin/ |
D | Utils.java | 23 …public final <A extends java.lang.Object, B extends java.lang.Object, C extends java.lang.Object>k… in toTriple() 24 kotlin.Pair<? extends B, ? extends C> bc) { in toTriple() 29 …public final <A extends java.lang.Object, B extends java.lang.Object, C extends java.lang.Object>k… in toTriple() 30 kotlin.Pair<? extends A, ? extends B> ab, C c) { in toTriple() 35 …public final <A extends java.lang.Object, B extends java.lang.Object, C extends java.lang.Object, … in toQuad() 40 …public final <A extends java.lang.Object, B extends java.lang.Object, C extends java.lang.Object, … in toQuad() 41 kotlin.Triple<? extends B, ? extends C, ? extends D> bcd) { in toQuad() 46 …public final <A extends java.lang.Object, B extends java.lang.Object, C extends java.lang.Object, … in toQuad() 47 kotlin.Triple<? extends A, ? extends B, ? extends C> abc, D d) { in toQuad() 52 …public final <A extends java.lang.Object, B extends java.lang.Object, C extends java.lang.Object, … in toQuint() [all …]
|
D | FlowKt.java | 21 …public static final <T extends java.lang.Object, R extends java.lang.Object>kotlinx.coroutines.flo… in pairwiseBy() 22 kotlinx.coroutines.flow.Flow<? extends T> $this$pairwiseBy, @org.jetbrains.annotations.NotNull() in pairwiseBy() 23 …super T, ? super T, ? super kotlin.coroutines.Continuation<? super R>, ? extends java.lang.Object>… in pairwiseBy() 34 …public static final <S extends java.lang.Object, T extends S, R extends java.lang.Object>kotlinx.c… in pairwiseBy() 35 …kotlinx.coroutines.flow.Flow<? extends T> $this$pairwiseBy, S initialValue, @org.jetbrains.annotat… in pairwiseBy() 36 …super S, ? super T, ? super kotlin.coroutines.Continuation<? super R>, ? extends java.lang.Object>… in pairwiseBy() 50 …public static final <S extends java.lang.Object, T extends S, R extends java.lang.Object>kotlinx.c… in pairwiseBy() 51 kotlinx.coroutines.flow.Flow<? extends T> $this$pairwiseBy, @org.jetbrains.annotations.NotNull() in pairwiseBy() 52 …kotlin.jvm.functions.Function1<? super kotlin.coroutines.Continuation<? super S>, ? extends java.l… in pairwiseBy() 53 …super S, ? super T, ? super kotlin.coroutines.Continuation<? super R>, ? extends java.lang.Object>… in pairwiseBy() [all …]
|
D | JavaAdapterKt.java | 28 …public static final <T extends java.lang.Object>kotlinx.coroutines.DisposableHandle collectFlow(@o… in collectFlow() 30 kotlinx.coroutines.flow.Flow<? extends T> flow, @org.jetbrains.annotations.NotNull() in collectFlow() 44 …public static final <T extends java.lang.Object>kotlinx.coroutines.Job collectFlow(@org.jetbrains.… in collectFlow() 46 kotlinx.coroutines.flow.Flow<? extends T> flow, @org.jetbrains.annotations.NotNull() in collectFlow() 60 …public static final <T extends java.lang.Object>kotlinx.coroutines.Job collectFlow(@org.jetbrains.… in collectFlow() 63 kotlinx.coroutines.flow.Flow<? extends T> flow, @org.jetbrains.annotations.NotNull() in collectFlow() 69 …public static final <A extends java.lang.Object, B extends java.lang.Object, R extends java.lang.O… in combineFlows() 70 kotlinx.coroutines.flow.Flow<? extends A> flow1, @org.jetbrains.annotations.NotNull() in combineFlows() 71 kotlinx.coroutines.flow.Flow<? extends B> flow2, @org.jetbrains.annotations.NotNull() in combineFlows() 72 kotlin.jvm.functions.Function2<? super A, ? super B, ? extends R> bifunction) { in combineFlows() [all …]
|
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/reflect/ |
H A D | TypeTokenSubtypeTest.java | 28 public class TypeTokenSubtypeTest extends TestCase { 96 TypeToken<List<? extends Number>> numberList = new TypeToken<List<? extends Number>>() {}; in testGetSubtypeOf_impossibleWildcard() 101 private static class OwnerTypeSubtypingTests extends SubtypeTester { 109 public Mall<Outdoor>.Shop<? extends Electronics> innerTypeIsSubtype_supertypeWithWildcard( in innerTypeIsSubtype_supertypeWithWildcard() 116 Mall<? extends Indoor>.Retailer<? extends Electronics> retailer) { in innerTypeIsSubtype_withWildcards() 127 public Mall<? extends Outdoor>.Shop<Electronics> ownerTypeIsSubtype_supertypeWithWildcard( in ownerTypeIsSubtype_supertypeWithWildcard() 134 Outlet<? extends Outdoor>.Shop<Electronics> shop) { in ownerTypeIsSubtype_withWildcards() 145 public Mall<? super Outdoor>.Shop<? extends Electronics> 152 public Mall<? super Outdoor>.Shop<? extends Electronics> 166 Mall<? extends Outdoor>.Shop<Electronics> shop) { in ownerTypeDoesNotMatch_subtypeWithWildcard() [all …]
|
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/reflect/ |
H A D | TypeTokenSubtypeTest.java | 28 public class TypeTokenSubtypeTest extends TestCase { 96 TypeToken<List<? extends Number>> numberList = new TypeToken<List<? extends Number>>() {}; in testGetSubtypeOf_impossibleWildcard() 101 private static class OwnerTypeSubtypingTests extends SubtypeTester { 109 public Mall<Outdoor>.Shop<? extends Electronics> innerTypeIsSubtype_supertypeWithWildcard( in innerTypeIsSubtype_supertypeWithWildcard() 116 Mall<? extends Indoor>.Retailer<? extends Electronics> retailer) { in innerTypeIsSubtype_withWildcards() 127 public Mall<? extends Outdoor>.Shop<Electronics> ownerTypeIsSubtype_supertypeWithWildcard( in ownerTypeIsSubtype_supertypeWithWildcard() 134 Outlet<? extends Outdoor>.Shop<Electronics> shop) { in ownerTypeIsSubtype_withWildcards() 145 public Mall<? super Outdoor>.Shop<? extends Electronics> 152 public Mall<? super Outdoor>.Shop<? extends Electronics> 166 Mall<? extends Outdoor>.Shop<Electronics> shop) { in ownerTypeDoesNotMatch_subtypeWithWildcard() [all …]
|
/aosp_15_r20/external/turbine/java/com/google/turbine/tree/ |
H A D | Tree.java | 39 public abstract <I extends @Nullable Object, O extends @Nullable Object> O accept( in accept() 94 public static class Ident extends Tree { 109 public <I extends @Nullable Object, O extends @Nullable Object> O accept( in accept() 125 public abstract static class Type extends Tree { 139 public abstract static class Expression extends Tree { 146 public static class WildTy extends Type { 163 public <I extends @Nullable Object, O extends @Nullable Object> O accept( in accept() 169 * An optional upper (extends) bound. 188 public static class ArrTy extends Type { 202 public <I extends @Nullable Object, O extends @Nullable Object> O accept( in accept() [all …]
|
/aosp_15_r20/art/test/181-default-methods/src/ |
H A D | Main.java | 174 class Default_D1 extends Super implements Abstract, D1 {} 175 class Default_D2 extends Super implements Abstract, D2 {} 176 class Default_D3 extends Super implements Abstract, D3 {} 177 class Miranda_D1M extends Super implements Abstract, D1M {} 178 class Miranda_D2M extends Super implements Abstract, D2M {} 179 class Miranda_D3M extends Super implements Abstract, D3M {} 180 class Conflict_D1_D2 extends Super implements Abstract, D1, D2 {} 181 class Default_D1_D2M extends Super implements Abstract, D1, D2M {} 182 class Default_D1M_D2 extends Super implements Abstract, D1M, D2 {} 183 class Miranda_D1M_D2M extends Super implements Abstract, D1M, D2M {} [all …]
|
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/ |
H A D | Tables.java | 71 T extends @Nullable Object, 72 R extends @Nullable Object, 73 C extends @Nullable Object, 75 I extends Table<R, C, V>> 77 java.util.function.Function<? super T, ? extends R> rowFunction, in toTable() 78 java.util.function.Function<? super T, ? extends C> columnFunction, in toTable() 79 java.util.function.Function<? super T, ? extends V> valueFunction, in toTable() 100 T extends @Nullable Object, 101 R extends @Nullable Object, 102 C extends @Nullable Object, [all …]
|
H A D | MultimapBuilder.java | 63 public abstract class MultimapBuilder<K0 extends @Nullable Object, V0 extends @Nullable Object> { 88 <K extends @Nullable Object, V extends @Nullable Object> Map<K, Collection<V>> createMap() { in hashKeys() 119 <K extends @Nullable Object, V extends @Nullable Object> Map<K, Collection<V>> createMap() { 153 public static <K0 extends @Nullable Object> MultimapBuilderWithKeys<K0> treeKeys( 158 <K extends K0, V extends @Nullable Object> Map<K, Collection<V>> createMap() { 169 public static <K0 extends Enum<K0>> MultimapBuilderWithKeys<K0> enumKeys(Class<K0> keyClass) { 174 <K extends K0, V extends @Nullable Object> Map<K, Collection<V>> createMap() { 182 private static final class ArrayListSupplier<V extends @Nullable Object> 199 public static <V extends @Nullable Object> Supplier<List<V>> instance() { 212 private static final class HashSetSupplier<V extends @Nullable Object> [all …]
|
H A D | CollectCollectors.java | 95 static <E extends Enum<E>> Collector<E, ?, ImmutableSet<E>> toImmutableEnumSet() { in toImmutableEnumSet() 99 private static <E extends Enum<E>> 109 private static final class EnumSetAccumulator<E extends Enum<E>> { 111 static final Collector<Enum<?>, ?, ImmutableSet<? extends Enum<?>>> TO_IMMUTABLE_ENUM_SET = 147 static <E extends Comparable<? super E>> 154 static <T extends @Nullable Object, E> Collector<T, ?, ImmutableMultiset<E>> toImmutableMultiset( in toImmutableMultiset() 155 Function<? super T, ? extends E> elementFunction, ToIntFunction<? super T> countFunction) { in toImmutableMultiset() 169 static <T extends @Nullable Object, E extends @Nullable Object, M extends Multiset<E>> 188 static <T extends @Nullable Object, K, V> Collector<T, ?, ImmutableMap<K, V>> toImmutableMap( 189 Function<? super T, ? extends K> keyFunction, [all …]
|
H A D | Maps.java | 116 static <K extends @Nullable Object> Function<Entry<K, ?>, K> keyFunction() { in keyFunction() 121 static <V extends @Nullable Object> Function<Entry<?, V>, V> valueFunction() { in valueFunction() 125 static <K extends @Nullable Object, V extends @Nullable Object> Iterator<K> keyIterator( in keyIterator() 136 static <K extends @Nullable Object, V extends @Nullable Object> Iterator<V> valueIterator( 159 public static <K extends Enum<K>, V> ImmutableMap<K, V> immutableEnumMap( 160 Map<K, ? extends V> map) { 166 Iterator<? extends Entry<K, ? extends V>> entryItr = map.entrySet().iterator(); 170 Entry<K, ? extends V> entry1 = entryItr.next(); 177 Entry<K, ? extends V> entry = entryItr.next(); 200 public static <T extends @Nullable Object, K extends Enum<K>, V> [all …]
|
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/ |
H A D | Tables.java | 72 T extends @Nullable Object, 73 R extends @Nullable Object, 74 C extends @Nullable Object, 76 I extends Table<R, C, V>> 78 java.util.function.Function<? super T, ? extends R> rowFunction, in toTable() 79 java.util.function.Function<? super T, ? extends C> columnFunction, in toTable() 80 java.util.function.Function<? super T, ? extends V> valueFunction, in toTable() 103 T extends @Nullable Object, 104 R extends @Nullable Object, 105 C extends @Nullable Object, [all …]
|
H A D | Maps.java | 111 static <K extends @Nullable Object> Function<Entry<K, ?>, K> keyFunction() { in keyFunction() 116 static <V extends @Nullable Object> Function<Entry<?, V>, V> valueFunction() { in valueFunction() 120 static <K extends @Nullable Object, V extends @Nullable Object> Iterator<K> keyIterator( in keyIterator() 131 static <K extends @Nullable Object, V extends @Nullable Object> Iterator<V> valueIterator( 154 public static <K extends Enum<K>, V> ImmutableMap<K, V> immutableEnumMap( 155 Map<K, ? extends V> map) { 161 Iterator<? extends Entry<K, ? extends V>> entryItr = map.entrySet().iterator(); 165 Entry<K, ? extends V> entry1 = entryItr.next(); 172 Entry<K, ? extends V> entry = entryItr.next(); 197 public static <T extends @Nullable Object, K extends Enum<K>, V> [all …]
|
H A D | MultimapBuilder.java | 63 public abstract class MultimapBuilder<K0 extends @Nullable Object, V0 extends @Nullable Object> { 88 <K extends @Nullable Object, V extends @Nullable Object> Map<K, Collection<V>> createMap() { in hashKeys() 119 <K extends @Nullable Object, V extends @Nullable Object> Map<K, Collection<V>> createMap() { 153 public static <K0 extends @Nullable Object> MultimapBuilderWithKeys<K0> treeKeys( 158 <K extends K0, V extends @Nullable Object> Map<K, Collection<V>> createMap() { 169 public static <K0 extends Enum<K0>> MultimapBuilderWithKeys<K0> enumKeys(Class<K0> keyClass) { 174 <K extends K0, V extends @Nullable Object> Map<K, Collection<V>> createMap() { 182 private static final class ArrayListSupplier<V extends @Nullable Object> 199 public static <V extends @Nullable Object> Supplier<List<V>> instance() { 212 private static final class HashSetSupplier<V extends @Nullable Object> [all …]
|
H A D | CollectCollectors.java | 98 static <E extends Enum<E>> Collector<E, ?, ImmutableSet<E>> toImmutableEnumSet() { in toImmutableEnumSet() 102 private static <E extends Enum<E>> 113 private static final class EnumSetAccumulator<E extends Enum<E>> { 115 static final Collector<Enum<?>, ?, ImmutableSet<? extends Enum<?>>> TO_IMMUTABLE_ENUM_SET = 151 static <E extends Comparable<? super E>> 158 static <T extends @Nullable Object, E> Collector<T, ?, ImmutableMultiset<E>> toImmutableMultiset( in toImmutableMultiset() 159 Function<? super T, ? extends E> elementFunction, ToIntFunction<? super T> countFunction) { in toImmutableMultiset() 173 static <T extends @Nullable Object, E extends @Nullable Object, M extends Multiset<E>> 192 static <T extends @Nullable Object, K, V> Collector<T, ?, ImmutableMap<K, V>> toImmutableMap( 193 Function<? super T, ? extends K> keyFunction, [all …]
|
/aosp_15_r20/external/google-smali/dexlib2/src/test/java/com/android/tools/smali/dexlib2/writer/util/ |
H A D | TryListBuilderTest.java | 44 private static class TryListBuilder extends 54 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks(); in testSingleCatchAll_Beginning() 56 List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(0, 10, in testSingleCatchAll_Beginning() 68 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks(); in testSingleCatchAll_Middle() 70 List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(5, 5, in testSingleCatchAll_Middle() 82 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks(); in testSingleCatch_Beginning() 84 List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(0, 10, in testSingleCatch_Beginning() 96 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks(); in testSingleCatch_Middle() 98 List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(5, 5, in testSingleCatch_Middle() 111 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks(); in testOverlap_End_After() [all …]
|
/aosp_15_r20/external/mesa3d/src/freedreno/afuc/ |
H A D | afuc.xml | 135 <bitset name="#instruction-rep" extends="#instruction"> 151 <bitset name="#alu-2src" extends="#instruction-rep"> 169 <bitset name="#alu-1src" extends="#instruction-rep"> 182 <bitset name="#alu-2src-immed" extends="#instruction-rep"> 192 <bitset name="#alu-2src-immed12" extends="#instruction-rep"> 203 <bitset name="#alu-1src-immed" extends="#instruction-rep"> 213 <bitset name="add" extends="#alu-2src"> 218 <bitset name="addi" displayname="add" extends="#alu-2src-immed"> 222 <bitset name="addhi" extends="#alu-2src"> 227 <bitset name="addhii" displayname="addhi" extends="#alu-2src-immed"> [all …]
|
/aosp_15_r20/libcore/benchmarks/src/benchmarks/ |
H A D | CloneBenchmark.java | 905 static class Deep1 extends Deep0 {} 906 static class Deep2 extends Deep1 {} 907 static class Deep3 extends Deep2 {} 908 static class Deep4 extends Deep3 {} 909 static class Deep5 extends Deep4 {} 910 static class Deep6 extends Deep5 {} 911 static class Deep7 extends Deep6 {} 912 static class Deep8 extends Deep7 {} 913 static class Deep9 extends Deep8 {} 914 static class Deep10 extends Deep9 {} [all …]
|
/aosp_15_r20/frameworks/base/apct-tests/perftests/core/src/android/libcore/ |
H A D | ClonePerfTest.java | 920 static class Deep1 extends Deep0 {} 922 static class Deep2 extends Deep1 {} 924 static class Deep3 extends Deep2 {} 926 static class Deep4 extends Deep3 {} 928 static class Deep5 extends Deep4 {} 930 static class Deep6 extends Deep5 {} 932 static class Deep7 extends Deep6 {} 934 static class Deep8 extends Deep7 {} 936 static class Deep9 extends Deep8 {} 938 static class Deep10 extends Deep9 {} [all …]
|
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/util/ |
H A D | CollectionUtils.java | 67 …public static <T extends Comparable<? super T>> int compareAsList(@Nonnull Collection<? extends T>… in compareAsList() 68 … @Nonnull Collection<? extends T> list2) { in compareAsList() 71 Iterator<? extends T> elements2 = list2.iterator(); in compareAsList() 80 @Nonnull Iterable<? extends T> it1, in compareAsIterable() 81 @Nonnull Iterable<? extends T> it2) { in compareAsIterable() 82 Iterator<? extends T> elements2 = it2.iterator(); in compareAsIterable() 98 …public static <T extends Comparable<? super T>> int compareAsIterable(@Nonnull Iterable<? extends … in compareAsIterable() 99 … @Nonnull Iterable<? extends T> it2) { in compareAsIterable() 100 Iterator<? extends T> elements2 = it2.iterator(); in compareAsIterable() 117 @Nonnull Collection<? extends T> list1, in compareAsList() [all …]
|
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/ |
H A D | BenchmarkHelpers.java | 44 <E extends Comparable<E>> Collection<E> create(Collection<E> contents); in create() 50 <K extends Comparable<K>, V> Map<K, V> create(Map<K, V> contents); in create() 64 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 70 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 76 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 82 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 88 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 94 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 100 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 106 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() [all …]
|
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | BenchmarkHelpers.java | 44 <E extends Comparable<E>> Collection<E> create(Collection<E> contents); in create() 50 <K extends Comparable<K>, V> Map<K, V> create(Map<K, V> contents); in create() 64 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 70 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 76 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 82 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 88 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 94 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 100 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() 106 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() [all …]
|
/aosp_15_r20/external/mesa3d/.gitlab-ci/container/ |
H A D | gitlab-ci.yml | 13 extends: 20 extends: 48 extends: 55 extends: 65 extends: 71 extends: 77 extends: 90 extends: 96 extends: 107 extends: [all …]
|