Searched defs:headMap (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DSortedMap.java181 SortedMap<K,V> headMap(K toKey); method in interface:SortedMap
H A DNavigableMap.java61 * {@link #headMap(Object, boolean) headMap(K, boolean)}, and
82 * {@link #headMap(Object) headMap(K)}, and
363 NavigableMap<K,V> headMap(K toKey, boolean inclusive); method in interface:NavigableMap
408 * <p>Equivalent to {@code headMap(toKey, false)}.
414 SortedMap<K,V> headMap(K toKey); method in interface:NavigableMap
H A DTreeMap.java927 public NavigableMap<K,V> headMap(K toKey, boolean inclusive) { method in class:TreeMap
965 public SortedMap<K,V> headMap(K toKey) { method in class:TreeMap
966 return headMap(toKey, false);
1166 return new KeySet<>(m.headMap(toElement, inclusive));
1621 public final SortedMap<K,V> headMap(K toKey) { method in class:TreeMap.NavigableSubMap
1622 return headMap(toKey, false);
1879 public NavigableMap<K,V> headMap(K toKey, boolean inclusive) { method in class:TreeMap.AscendingSubMap
1972 public NavigableMap<K,V> headMap(K toKey, boolean inclusive) { method in class:TreeMap.DescendingSubMap
2059 public SortedMap<K,V> headMap(K toKey) { throw new InternalError(); } method in class:TreeMap.SubMap
H A DCollections.java1816 * <tt>subMap</tt>, <tt>headMap</tt>, or <tt>tailMap</tt> views, result in
1846 public SortedMap<K,V> headMap(K toKey) method in class:Collections.UnmodifiableSortedMap
1847 { return new UnmodifiableSortedMap<>(sm.headMap(toKey)); }
1860 * {@code subMap}, {@code headMap}, or {@code tailMap} views, result in
1990 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) method in class:Collections.UnmodifiableNavigableMap
1991 { return unmodifiableNavigableMap(nm.headMap(toKey, inclusive)); }
2747 * collections views of any of its <tt>subMap</tt>, <tt>headMap</tt> or
2817 public SortedMap<K,V> headMap(K toKey) { method in class:Collections.SynchronizedSortedMap
2819 return new SynchronizedSortedMap<>(sm.headMap(toKey), mutex);
2844 * collections views of any of its {@code subMap}, {@code headMap} o
2963 public SortedMap<K,V> headMap(K toKey) { method in class:Collections.SynchronizedNavigableMap
2981 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { method in class:Collections.SynchronizedNavigableMap
4027 public SortedMap<K,V> headMap(K toKey) { method in class:Collections.CheckedSortedMap
4184 public NavigableMap<K,V> headMap(K toKey) { method in class:Collections.CheckedNavigableMap
4197 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { method in class:Collections.CheckedNavigableMap
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentNavigableMap.java70 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive); method in interface:ConcurrentNavigableMap
91 ConcurrentNavigableMap<K,V> headMap(K toKey); method in interface:ConcurrentNavigableMap
H A DConcurrentSkipListMap.java2065 public ConcurrentNavigableMap<K,V> headMap(K toKey, method in class:ConcurrentSkipListMap
2100 public ConcurrentNavigableMap<K,V> headMap(K toKey) { method in class:ConcurrentSkipListMap
2101 return headMap(toKey, false);
2415 return new KeySet<>(m.headMap(toElement, inclusive));
2561 * only using the {@code subMap}, {@code headMap}, and {@code tailMap}
2962 public SubMap<K,V> headMap(K toKey, boolean inclusive) { method in class:ConcurrentSkipListMap.SubMap
2978 public SubMap<K,V> headMap(K toKey) { method in class:ConcurrentSkipListMap.SubMap
2979 return headMap(toKey, false);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DRefSortedMap.java188 public SortedMap<K, V> headMap(K key) { method in class:RefSortedMap.SubMap
278 public SortedMap<K, V> headMap(K key) { method in class:RefSortedMap

Completed in 209 milliseconds