Home
last modified time | relevance | path

Searched defs:subMap (Results 1 – 25 of 638) sorted by relevance

12345678910>>...26

/aosp_15_r20/libcore/luni/src/test/java/libcore/java/util/concurrent/
H A DConcurrentSkipListMapTest.java152 ConcurrentNavigableMap subMap = map.subMap("B", "D"); in testSubMap() local
165 ConcurrentNavigableMap subMap = map.subMap("A", "A"); in testSubMapEmpty() local
178 ConcurrentNavigableMap subMap = map.headMap("D"); in testHeadMap() local
191 ConcurrentNavigableMap subMap = map.headMap("A"); in testHeadMapEmpty() local
204 ConcurrentNavigableMap subMap = map.tailMap("C"); in testTailMap() local
217 ConcurrentNavigableMap subMap = map.tailMap("F"); in testTailMapSingleElement() local
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/util/
H A DTreeMapTest.java75 NavigableMap<String, String> subMap = map.subMap("A", true, "C", true); in testSubMapEntrySetSetValue() local
350 SortedMap<String, String> subMap = map.subMap("a", "c"); in testSubMapSerialization() local
351 new SerializationTester<SortedMap<String, String>>(subMap, s) { in testSubMapSerialization() argument
383 SortedMap<String, String> subMap = map.subMap("a", false, "c", true); in testNavigableSubMapSerialization() local
384 new SerializationTester<SortedMap<String, String>>(subMap, s) { in testNavigableSubMapSerialization() argument
461 SortedMap<String, String> subMap = map.subMap("a", "c"); in testJava5SubMapSerialization() local
462 new SerializationTester<SortedMap<String, String>>(subMap, s) { in testJava5SubMapSerialization() argument
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedNavigableMapTest.java215 public NavigableMap<K, V> subMap( in subMap() method in SynchronizedNavigableMapTest.TestMap
222 public SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() method in SynchronizedNavigableMapTest.TestMap
390 SortedMap<String, Integer> subMap = map.subMap("a", "b"); in testSubMap_k_k() local
397 NavigableMap<String, Integer> subMap = map.subMap("a", true, "b", false); in testSubMap_k_b_k_b() local
404 SortedMap<String, Integer> subMap = map.tailMap("a"); in testTailMap_k() local
411 NavigableMap<String, Integer> subMap = map.tailMap("a", true); in testTailMap_k_b() local
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/
H A DSynchronizedNavigableMapTest.java215 public NavigableMap<K, V> subMap( in subMap() method in SynchronizedNavigableMapTest.TestMap
222 public SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() method in SynchronizedNavigableMapTest.TestMap
390 SortedMap<String, Integer> subMap = map.subMap("a", "b"); in testSubMap_k_k() local
397 NavigableMap<String, Integer> subMap = map.subMap("a", true, "b", false); in testSubMap_k_b_k_b() local
404 SortedMap<String, Integer> subMap = map.tailMap("a"); in testTailMap_k() local
411 NavigableMap<String, Integer> subMap = map.tailMap("a", true); in testTailMap_k_b() local
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DTreeMapTest.java524 SortedMap subMap = tm.subMap(objArray[100].toString(), objArray[109] in test_subMapLjava_lang_ObjectLjava_lang_Object() local
585 Map subMap = map.subMap("", "test"); in test_subMap_Iterator() local
843 Map subMap = map.subMap("", "test"); in test_subMap_Iterator2() local
1322 SortedMap subMap = tm.subMap(objArray[100].toString(), true, in test_subMapLjava_lang_ObjectZLjava_lang_ObjectZ() local
1482 SortedMap subMap = tm.headMap(objArray[100].toString(), true); in test_headMapLjava_lang_ObjectZL() local
1612 SortedMap subMap = tm.tailMap(objArray[100].toString(), true); in test_tailMapLjava_lang_ObjectZL() local
1956 SortedMap subMap = ((SortedMap) treeMap).subMap(firstKey, firstKey); in test_values_1() local
H A DTreeMapExtendTest.java317 SortedMap subMap = tm_null.subMap("0", "2"); in test_SubMap_containsValue() local
874 SortedMap subMap = tm.subMap(startKey.toString(), endKey.toString()); in test_SubMap_isEmpty() local
1759 SortedMap subMap; in test_AscendingSubMap_subMap() local
/aosp_15_r20/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
H A DSortedMapInterfaceTest.java72 SortedMap<K, V> subMap = map.tailMap(key); in testTailMapWriteThrough() local
99 SortedMap<K, V> subMap = map.tailMap(key); in testTailMapRemoveThrough() local
122 SortedMap<K, V> subMap = map.tailMap(key); in testTailMapClearThrough() local
/aosp_15_r20/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSortedMapInterfaceTest.java72 SortedMap<K, V> subMap = map.tailMap(key); in testTailMapWriteThrough() local
99 SortedMap<K, V> subMap = map.tailMap(key); in testTailMapRemoveThrough() local
122 SortedMap<K, V> subMap = map.tailMap(key); in testTailMapClearThrough() local
/aosp_15_r20/libcore/ojluni/src/test/java/util/Collections/
H A DEmptyNavigableMap.java268 NavigableMap subMap = navigableMap.subMap(first, true, last, true); in testSubMapRanges() local
286 NavigableMap subMap = navigableMap.headMap(BigInteger.ONE, true); in testheadMapRanges() local
305 NavigableMap subMap = navigableMap.tailMap(BigInteger.ONE, true); in testTailMapRanges() local
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentNavigableMap.java62 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method
84 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); in subMap() method
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/19/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentNavigableMap.java62 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method
84 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); in subMap() method
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentNavigableMap.java62 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method
84 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); in subMap() method
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/23/libcore/ojluni/src/main/java/java/util/
DNavigableMap.java339 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method
409 SortedMap<K,V> subMap(K fromKey, K toKey); in subMap() method
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/util/
H A DNavigableMap.annotated.java72 public java.util.NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toIncl… in subMap() method
78 public java.util.SortedMap<K,V> subMap(K fromKey, K toKey); in subMap() method
H A DTreeMap.annotated.java117 public java.util.NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toIncl… in subMap() method in TreeMap
123 public java.util.SortedMap<K,V> subMap(K fromKey, K toKey) { throw new RuntimeException("Stub!"); } in subMap() method in TreeMap
/aosp_15_r20/libcore/ojluni/annotations/sdk/nullability/java/util/
H A DNavigableMap.annotated.java73 …ap<@libcore.util.NullFromTypeParam K, @libcore.util.NullFromTypeParam V> subMap(@libcore.util.Null… in subMap() method
79 …ap<@libcore.util.NullFromTypeParam K, @libcore.util.NullFromTypeParam V> subMap(@libcore.util.Null… in subMap() method
H A DTreeMap.annotated.java102 …ap<@libcore.util.NullFromTypeParam K, @libcore.util.NullFromTypeParam V> subMap(@libcore.util.Null… in subMap() method in TreeMap
108 …ap<@libcore.util.NullFromTypeParam K, @libcore.util.NullFromTypeParam V> subMap(@libcore.util.Null… in subMap() method in TreeMap
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/
H A DNavigableMap.java339 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method
409 SortedMap<K,V> subMap(K fromKey, K toKey); in subMap() method
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/
DNavigableMap.java339 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method
409 SortedMap<K,V> subMap(K fromKey, K toKey); in subMap() method
DTreeMap.java1224 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method in TreeMap
1266 public SortedMap<K,V> subMap(K fromKey, K toKey) { in subMap() method in TreeMap
1967 public final SortedMap<K,V> subMap(K fromKey, K toKey) { in subMap() method in TreeMap.NavigableSubMap
2217 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method in TreeMap.AscendingSubMap
2312 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method in TreeMap.DescendingSubMap
2414 public SortedMap<K,V> subMap(K fromKey, K toKey) { throw new InternalError(); } in subMap() method in TreeMap.SubMap
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/
H A DTreeRangeSet.java306 private NavigableMap<Cut<C>, Range<C>> subMap(Range<Cut<C>> window) { in subMap() method in TreeRangeSet.RangesByUpperBound
315 public NavigableMap<Cut<C>, Range<C>> subMap( in subMap() method in TreeRangeSet.RangesByUpperBound
H A DAbstractMapBasedMultimap.java938 KeySet(final Map<K, Collection<V>> subMap) { in KeySet()
1010 SortedKeySet(SortedMap<K, Collection<V>> subMap) { in SortedKeySet()
1054 NavigableKeySet(NavigableMap<K, Collection<V>> subMap) { in NavigableKeySet()
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/
H A DTreeRangeSet.java306 private NavigableMap<Cut<C>, Range<C>> subMap(Range<Cut<C>> window) { in subMap() method in TreeRangeSet.RangesByUpperBound
315 public NavigableMap<Cut<C>, Range<C>> subMap( in subMap() method in TreeRangeSet.RangesByUpperBound
H A DAbstractMapBasedMultimap.java946 KeySet(final Map<K, Collection<V>> subMap) { in KeySet()
1023 SortedKeySet(SortedMap<K, Collection<V>> subMap) { in SortedKeySet()
1067 NavigableKeySet(NavigableMap<K, Collection<V>> subMap) { in NavigableKeySet()
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/util/concurrent/
H A DConcurrentSkipListMap.annotated.java112 public java.util.concurrent.ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, K … in subMap() method in ConcurrentSkipListMap
118 public java.util.concurrent.ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) { throw new Runt… in subMap() method in ConcurrentSkipListMap

12345678910>>...26