Searched defs:headMap (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ConcurrentNavigableMap.java | 40 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive); in headMap() method 61 ConcurrentNavigableMap<K,V> headMap(K toKey); in headMap() method
|
D | ConcurrentSkipListMap.java | 1973 public ConcurrentNavigableMap<K,V> headMap(K toKey, in headMap() method in ConcurrentSkipListMap 2008 public ConcurrentNavigableMap<K,V> headMap(K toKey) { in headMap() method in ConcurrentSkipListMap 2850 public SubMap<K,V> headMap(K toKey, in headMap() method in ConcurrentSkipListMap.SubMap 2868 public SubMap<K,V> headMap(K toKey) { in headMap() method in ConcurrentSkipListMap.SubMap
|
/libcore/luni/src/main/java/java/util/ |
D | SortedMap.java | 62 public SortedMap<K,V> headMap(K endKey); in headMap() method
|
D | NavigableMap.java | 326 NavigableMap<K,V> headMap(K toKey, boolean inclusive); in headMap() method 377 SortedMap<K,V> headMap(K toKey); in headMap() method
|
D | TreeMap.java | 707 public NavigableMap<K, V> headMap(K to, boolean inclusive) { in headMap() method in TreeMap 712 public SortedMap<K, V> headMap(K toExclusive) { in headMap() method in TreeMap
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | TreeMapExtendTest.java | 633 SortedMap headMap = null; in test_SubMap_headMap() local 2411 NavigableMap headMap = decendingMap.headMap(endKey, false); in test_DescendingSubMap_values() local
|
D | TreeMapTest.java | 347 SortedMap<String, String> headMap = treemap.headMap("100"); in test_headMapLjava_lang_Object() local 875 SortedMap<Integer, Double> headMap = map.headMap(3); in test_SubMap_Serializable() local
|