Home
last modified time | relevance | path

Searched refs:toKey (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DSortedMap.java154 SortedMap<K,V> subMap(K fromKey, K toKey); in subMap() argument
181 SortedMap<K,V> headMap(K toKey); in headMap() argument
DTreeMap.java913 K toKey, boolean toInclusive) { in subMap() argument
916 false, toKey, toInclusive); in subMap()
927 public NavigableMap<K,V> headMap(K toKey, boolean inclusive) { in headMap() argument
930 false, toKey, inclusive); in headMap()
954 public SortedMap<K,V> subMap(K fromKey, K toKey) { in subMap() argument
955 return subMap(fromKey, true, toKey, false); in subMap()
965 public SortedMap<K,V> headMap(K toKey) { in headMap() argument
966 return headMap(toKey, false); in headMap()
1617 public final SortedMap<K,V> subMap(K fromKey, K toKey) { in subMap() argument
1618 return subMap(fromKey, true, toKey, false); in subMap()
[all …]
DCollections.java1851 public SortedMap<K,V> subMap(K fromKey, K toKey)
1852 { return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey)); }
1853 public SortedMap<K,V> headMap(K toKey)
1854 { return new UnmodifiableSortedMap<>(sm.headMap(toKey)); }
1992 … public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
1994 nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
1997 public NavigableMap<K, V> headMap(K toKey, boolean inclusive)
1998 { return unmodifiableNavigableMap(nm.headMap(toKey, inclusive)); }
2818 public SortedMap<K,V> subMap(K fromKey, K toKey) {
2821 sm.subMap(fromKey, toKey), mutex);
[all …]
/libcore/ojluni/annotations/sdk/nullability/java/util/
DNavigableMap.annotated.java73 …Param K fromKey, boolean fromInclusive, @libcore.util.NullFromTypeParam K toKey, boolean toInclusi… in subMap() argument
75 …bcore.util.NullFromTypeParam V> headMap(@libcore.util.NullFromTypeParam K toKey, boolean inclusive… in headMap() argument
79 …aram V> subMap(@libcore.util.NullFromTypeParam K fromKey, @libcore.util.NullFromTypeParam K toKey); in subMap() argument
81 …omTypeParam K, @libcore.util.NullFromTypeParam V> headMap(@libcore.util.NullFromTypeParam K toKey); in headMap() argument
DSortedMap.annotated.java35 …aram V> subMap(@libcore.util.NullFromTypeParam K fromKey, @libcore.util.NullFromTypeParam K toKey); in subMap() argument
37 …omTypeParam K, @libcore.util.NullFromTypeParam V> headMap(@libcore.util.NullFromTypeParam K toKey); in headMap() argument
DTreeMap.annotated.java102 …Param K fromKey, boolean fromInclusive, @libcore.util.NullFromTypeParam K toKey, boolean toInclusi… in subMap() argument
104 …bcore.util.NullFromTypeParam V> headMap(@libcore.util.NullFromTypeParam K toKey, boolean inclusive… in headMap() argument
108 …bcore.util.NullFromTypeParam K fromKey, @libcore.util.NullFromTypeParam K toKey) { throw new Runti… in subMap() argument
110 …bcore.util.NullFromTypeParam V> headMap(@libcore.util.NullFromTypeParam K toKey) { throw new Runti… in headMap() argument
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListMap.java2052 K toKey, in subMap() argument
2054 if (fromKey == null || toKey == null) in subMap()
2057 (this, fromKey, fromInclusive, toKey, toInclusive, false); in subMap()
2065 public ConcurrentNavigableMap<K,V> headMap(K toKey, in headMap() argument
2067 if (toKey == null) in headMap()
2070 (this, null, false, toKey, inclusive, false); in headMap()
2091 public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) { in subMap() argument
2092 return subMap(fromKey, true, toKey, false); in subMap()
2100 public ConcurrentNavigableMap<K,V> headMap(K toKey) { in headMap() argument
2101 return headMap(toKey, false); in headMap()
[all …]