Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/util/
DTreeMapTest.java67 NavigableMap<String, String> subMap = map.subMap("A", true, "C", true); in testSubMapEntrySetSetValue() local
314 SortedMap<String, String> subMap = map.subMap("a", "c"); in testSubMapSerialization() local
315 new SerializationTester<SortedMap<String, String>>(subMap, s) { in testSubMapSerialization() argument
346 SortedMap<String, String> subMap = map.subMap("a", false, "c", true); in testNavigableSubMapSerialization() local
347 new SerializationTester<SortedMap<String, String>>(subMap, s) { in testNavigableSubMapSerialization() argument
423 SortedMap<String, String> subMap = map.subMap("a", "c"); in testJava5SubMapSerialization() local
424 new SerializationTester<SortedMap<String, String>>(subMap, s) { in testJava5SubMapSerialization() argument
DOldTreeMapTest.java396 SortedMap subMap = tm.subMap(objArray[100].toString(), objArray[109] in test_subMapLjava_lang_ObjectLjava_lang_Object() local
/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentNavigableMap.java31 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method
54 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); in subMap() method
DConcurrentSkipListMap.java1927 public ConcurrentNavigableMap<K,V> subMap(K fromKey, in subMap() method in ConcurrentSkipListMap
1968 public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) { in subMap() method in ConcurrentSkipListMap
2810 public SubMap<K,V> subMap(K fromKey, in subMap() method in ConcurrentSkipListMap.SubMap
2833 public SubMap<K,V> subMap(K fromKey, K toKey) { in subMap() method in ConcurrentSkipListMap.SubMap
/libcore/luni/src/main/java/java/util/
DSortedMap.java100 public SortedMap<K,V> subMap(K startKey, K endKey); in subMap() method
DNavigableMap.java303 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() method
373 SortedMap<K,V> subMap(K fromKey, K toKey); in subMap() method
DTreeMap.java697 public NavigableMap<K, V> subMap(K from, boolean fromInclusive, K to, boolean toInclusive) { in subMap() method in TreeMap
703 public SortedMap<K, V> subMap(K fromInclusive, K toExclusive) { in subMap() method in TreeMap