Home
last modified time | relevance | path

Searched defs:RandomAccess (Results 1 – 25 of 674) sorted by relevance

12345678910>>...27

/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/
H A DArrayListMultimapTest.java87 assertTrue(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
88 assertTrue(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
96 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
97 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
105 assertTrue(multimap.replaceValues("foo", asList(2, 4)) instanceof RandomAccess); in testReplaceValuesRandomAccess() local
106 assertTrue(multimap.replaceValues("bar", asList(2, 4)) instanceof RandomAccess); in testReplaceValuesRandomAccess() local
H A DLinkedListMultimapTest.java102 assertFalse(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
103 assertFalse(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
114 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
115 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
126 assertTrue(multimap.replaceValues("foo", Arrays.asList(2, 4)) instanceof RandomAccess); in testReplaceValuesRandomAccess() local
127 assertTrue(multimap.replaceValues("bar", Arrays.asList(2, 4)) instanceof RandomAccess); in testReplaceValuesRandomAccess() local
H A DSynchronizedMultimapTest.java251 assertTrue(multimap.get("foo") instanceof RandomAccess); in testSynchronizedArrayListMultimapRandomAccess() local
252 assertTrue(multimap.get("bar") instanceof RandomAccess); in testSynchronizedArrayListMultimapRandomAccess() local
260 assertFalse(multimap.get("foo") instanceof RandomAccess); in testSynchronizedLinkedListMultimapRandomAccess() local
261 assertFalse(multimap.get("bar") instanceof RandomAccess); in testSynchronizedLinkedListMultimapRandomAccess() local
H A DMultimapsTest.java199 assertTrue(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
200 assertTrue(multimap.get("bar") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
208 assertFalse(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableLinkedListMultimapRandomAccess() local
209 assertFalse(multimap.get("bar") instanceof RandomAccess); in testUnmodifiableLinkedListMultimapRandomAccess() local
H A DListsTest.java970 assertFalse(partitions.get(0) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
971 assertFalse(partitions.get(1) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/
H A DArrayListMultimapTest.java87 assertTrue(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
88 assertTrue(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
96 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
97 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
105 assertTrue(multimap.replaceValues("foo", asList(2, 4)) instanceof RandomAccess); in testReplaceValuesRandomAccess() local
106 assertTrue(multimap.replaceValues("bar", asList(2, 4)) instanceof RandomAccess); in testReplaceValuesRandomAccess() local
H A DLinkedListMultimapTest.java103 assertFalse(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
104 assertFalse(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
115 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
116 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
127 assertTrue(multimap.replaceValues("foo", Arrays.asList(2, 4)) instanceof RandomAccess); in testReplaceValuesRandomAccess() local
128 assertTrue(multimap.replaceValues("bar", Arrays.asList(2, 4)) instanceof RandomAccess); in testReplaceValuesRandomAccess() local
H A DSynchronizedMultimapTest.java251 assertTrue(multimap.get("foo") instanceof RandomAccess); in testSynchronizedArrayListMultimapRandomAccess() local
252 assertTrue(multimap.get("bar") instanceof RandomAccess); in testSynchronizedArrayListMultimapRandomAccess() local
260 assertFalse(multimap.get("foo") instanceof RandomAccess); in testSynchronizedLinkedListMultimapRandomAccess() local
261 assertFalse(multimap.get("bar") instanceof RandomAccess); in testSynchronizedLinkedListMultimapRandomAccess() local
H A DMultimapsTest.java130 assertTrue(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
131 assertTrue(multimap.get("bar") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
139 assertFalse(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableLinkedListMultimapRandomAccess() local
140 assertFalse(multimap.get("bar") instanceof RandomAccess); in testUnmodifiableLinkedListMultimapRandomAccess() local
H A DListsTest.java970 assertFalse(partitions.get(0) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
971 assertFalse(partitions.get(1) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/24/libcore/ojluni/src/main/java/java/util/
DRandomAccess.java67 public interface RandomAccess { interface
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/
DRandomAccess.java67 public interface RandomAccess { interface
DAbstractList.java663 assert list instanceof RandomAccess; in RandomAccessSpliterator() local
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/
H A DRandomAccess.java67 public interface RandomAccess { interface
H A DAbstractList.java663 assert list instanceof RandomAccess; in RandomAccessSpliterator() local
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/17/libcore/ojluni/src/main/java/java/util/
DAbstractList.java663 assert list instanceof RandomAccess; in RandomAccessSpliterator() local
/aosp_15_r20/external/cronet/third_party/protobuf/src/google/protobuf/
H A Drepeated_field_unittest.cc1821 TEST_F(RepeatedPtrFieldIteratorTest, RandomAccess) { in TEST_F() argument
/aosp_15_r20/external/protobuf/src/google/protobuf/
H A Drepeated_field_unittest.cc1821 TEST_F(RepeatedPtrFieldIteratorTest, RandomAccess) { in TEST_F() argument
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
Dscsi.h1962 UCHAR RandomAccess:1; member
Dwdm.h4055 RandomAccess enumerator
/aosp_15_r20/external/ow2-asm/tools/
HDjdk8-api.jarMETA-INF/ java/io/CharArrayReader.class <Unknown> package java.io public ...
/aosp_15_r20/out/soong/.intermediates/libcore/art.module.public.api.stubs.module_lib.from-text/android_common/art.module.public.api.stubs.module_lib.from-text/
Dart.module.public.api.stubs.module_lib.from-text.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/compat/ android/ ...
/aosp_15_r20/prebuilts/sdk/extensions/13/public/
HDart.jarMETA-INF/ META-INF/MANIFEST.MF NOTICES/libcore-NOTICES.txt android ...
/aosp_15_r20/out/soong/.intermediates/libcore/art.module.public.api.stubs.exportable.system/android_common/combined/
Dart.module.public.api.stubs.exportable.system.jarMETA-INF/ META-INF/MANIFEST.MF NOTICES/libcore-NOTICES.txt android ...
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/sdk_library/public/
Dart-stubs.jarMETA-INF/ META-INF/MANIFEST.MF NOTICES/libcore-NOTICES.txt android ...

12345678910>>...27