Home
last modified time | relevance | path

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

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DArrayListMultimapTest.java49 assertTrue(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
50 assertTrue(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
60 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
61 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
72 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
74 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
DLinkedListMultimapTest.java54 assertFalse(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
55 assertFalse(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
66 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
67 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
79 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
81 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
DMultimapsTest.java120 assertTrue(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
121 assertTrue(multimap.get("bar") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
130 assertFalse(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableLinkedListMultimapRandomAccess() local
131 assertFalse(multimap.get("bar") instanceof RandomAccess); in testUnmodifiableLinkedListMultimapRandomAccess() local
DMapConstraintsTest.java272 assertFalse(multimap.get("foo") instanceof RandomAccess); in testConstrainedTypePreservingList() local
285 assertTrue(multimap.get("foo") instanceof RandomAccess); in testConstrainedTypePreservingRandomAccessList() local
DListsTest.java602 assertFalse(partitions.get(0) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
603 assertFalse(partitions.get(1) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
/external/guava/guava-tests/test/com/google/common/collect/
DArrayListMultimapTest.java86 assertTrue(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
87 assertTrue(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
97 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
98 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
109 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
111 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
DLinkedListMultimapTest.java101 assertFalse(multimap.get("foo") instanceof RandomAccess); in testGetRandomAccess() local
102 assertFalse(multimap.get("bar") instanceof RandomAccess); in testGetRandomAccess() local
113 assertTrue(multimap.removeAll("foo") instanceof RandomAccess); in testRemoveAllRandomAccess() local
114 assertTrue(multimap.removeAll("bar") instanceof RandomAccess); in testRemoveAllRandomAccess() local
126 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
128 instanceof RandomAccess); in testReplaceValuesRandomAccess() local
DSynchronizedMultimapTest.java233 assertTrue(multimap.get("foo") instanceof RandomAccess); in testSynchronizedArrayListMultimapRandomAccess() local
234 assertTrue(multimap.get("bar") instanceof RandomAccess); in testSynchronizedArrayListMultimapRandomAccess() local
243 assertFalse(multimap.get("foo") instanceof RandomAccess); in testSynchronizedLinkedListMultimapRandomAccess() local
244 assertFalse(multimap.get("bar") instanceof RandomAccess); in testSynchronizedLinkedListMultimapRandomAccess() local
DMultimapsTest.java137 assertTrue(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
138 assertTrue(multimap.get("bar") instanceof RandomAccess); in testUnmodifiableArrayListMultimapRandomAccess() local
147 assertFalse(multimap.get("foo") instanceof RandomAccess); in testUnmodifiableLinkedListMultimapRandomAccess() local
148 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.java865 assertFalse(partitions.get(0) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
866 assertFalse(partitions.get(1) instanceof RandomAccess); in testPartitionRandomAccessFalse() local
/external/protobuf/src/google/protobuf/
Drepeated_field_unittest.cc1110 TEST_F(RepeatedPtrFieldIteratorTest, RandomAccess) { in TEST_F() argument