Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/collect/
DArrayListMultimapTest.java47 assertTrue(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
48 assertTrue(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
58 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
59 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
70 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
72 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
DLinkedListMultimapTest.java63 assertFalse(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
64 assertFalse(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
75 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
76 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
88 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
90 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
DSynchronizedMultimapTest.java202 assertTrue(multimap.get("foo") instanceof RandomAccess); in testSynchronizedArrayListMultimapRandomAccess() local
203 assertTrue(multimap.get("bar") instanceof RandomAccess); in testSynchronizedArrayListMultimapRandomAccess() local
212 assertFalse(multimap.get("foo") instanceof RandomAccess); in testSynchronizedLinkedListMultimapRandomAccess() local
213 assertFalse(multimap.get("bar") instanceof RandomAccess); in testSynchronizedLinkedListMultimapRandomAccess() local
DMultimapsTest.java136 assertTrue(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
137 assertTrue(multimap.get("bar") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
146 assertFalse(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableLinkedListMultimapRandomAccess() local
147 assertFalse(multimap.get("bar") instanceof RandomAccess); in testUnmodifiableLinkedListMultimapRandomAccess() local
DMapConstraintsTest.java274 assertFalse(multimap.get("foo") instanceof RandomAccess); in testConstrainedTypePreservingList() local
287 assertTrue(multimap.get("foo") instanceof RandomAccess); in testConstrainedTypePreservingRandomAccessList() local
DListsTest.java820 assertFalse(partitions.get(0) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
821 assertFalse(partitions.get(1) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
/external/protobuf/src/google/protobuf/
Drepeated_field_unittest.cc641 TEST_F(RepeatedPtrFieldIteratorTest, RandomAccess) { in TEST_F() argument