Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentNavigableMap.java63 K toKey, boolean toInclusive); in subMap() argument
70 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive); in headMap() argument
84 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); in subMap() argument
91 ConcurrentNavigableMap<K,V> headMap(K toKey); in headMap() argument
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 …]
/libcore/ojluni/src/main/java/java/util/
DNavigableMap.java334 K toKey, boolean toInclusive); in subMap() argument
363 NavigableMap<K,V> headMap(K toKey, boolean inclusive); in headMap() argument
403 SortedMap<K,V> subMap(K fromKey, K toKey); in subMap() argument
414 SortedMap<K,V> headMap(K toKey); in headMap() argument
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/annotations/hiddenapi/java/util/
DCollections.java1118 public java.util.NavigableMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument
1122 public java.util.NavigableMap<K, V> headMap(K toKey) { in headMap() argument
1131 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument
1135 public java.util.NavigableMap<K, V> headMap(K toKey, boolean inclusive) { in headMap() argument
1333 public java.util.SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument
1337 public java.util.SortedMap<K, V> headMap(K toKey) { in headMap() argument
2606 public java.util.SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap() argument
2610 public java.util.SortedMap<K, V> headMap(K toKey) { in headMap() argument
2619 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument
2623 public java.util.NavigableMap<K, V> headMap(K toKey, boolean inclusive) { in headMap() argument
[all …]
/libcore/ojluni/src/main/java/java/time/format/
DDateTimeFormatterBuilder.java4095 k = toKey(k); in add0()
4196 protected String toKey(String k) { in toKey() method in PrefixTree
4290 protected String toKey(String k) { in toKey() method in PrefixTree.LENIENT