Home
last modified time | relevance | path

Searched refs:fromKey (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
208 SortedMap<K,V> tailMap(K fromKey); in tailMap() argument
DTreeMap.java912 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() argument
915 false, fromKey, fromInclusive, in subMap()
941 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) { in tailMap() argument
943 false, fromKey, inclusive, in tailMap()
954 public SortedMap<K,V> subMap(K fromKey, K toKey) { in subMap() argument
955 return subMap(fromKey, true, toKey, false); in subMap()
976 public SortedMap<K,V> tailMap(K fromKey) { in tailMap() argument
977 return tailMap(fromKey, true); in tailMap()
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)); }
1855 public SortedMap<K,V> tailMap(K fromKey)
1856 { return new UnmodifiableSortedMap<>(sm.tailMap(fromKey)); }
1992 … public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
1994 nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
1999 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive)
2000 { return unmodifiableNavigableMap(nm.tailMap(fromKey, 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 …bcore.util.NullFromTypeParam V> subMap(@libcore.util.NullFromTypeParam K fromKey, boolean fromIncl… in subMap() argument
77 …core.util.NullFromTypeParam V> tailMap(@libcore.util.NullFromTypeParam K fromKey, boolean inclusiv… in tailMap() argument
79 …bcore.util.NullFromTypeParam V> subMap(@libcore.util.NullFromTypeParam K fromKey, @libcore.util.Nu… in subMap() argument
83 …TypeParam K, @libcore.util.NullFromTypeParam V> tailMap(@libcore.util.NullFromTypeParam K fromKey); in tailMap() argument
DSortedMap.annotated.java35 …bcore.util.NullFromTypeParam V> subMap(@libcore.util.NullFromTypeParam K fromKey, @libcore.util.Nu… in subMap() argument
39 …TypeParam K, @libcore.util.NullFromTypeParam V> tailMap(@libcore.util.NullFromTypeParam K fromKey); in tailMap() argument
DTreeMap.annotated.java102 …bcore.util.NullFromTypeParam V> subMap(@libcore.util.NullFromTypeParam K fromKey, boolean fromIncl… in subMap() argument
106 …core.util.NullFromTypeParam V> tailMap(@libcore.util.NullFromTypeParam K fromKey, boolean inclusiv… in tailMap() argument
108 …bcore.util.NullFromTypeParam V> subMap(@libcore.util.NullFromTypeParam K fromKey, @libcore.util.Nu… in subMap() argument
112 …core.util.NullFromTypeParam V> tailMap(@libcore.util.NullFromTypeParam K fromKey) { throw new Runt… in tailMap() argument
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListMap.java2050 public ConcurrentNavigableMap<K,V> subMap(K fromKey, in subMap() argument
2054 if (fromKey == null || toKey == null) in subMap()
2057 (this, fromKey, fromInclusive, toKey, toInclusive, false); in subMap()
2078 public ConcurrentNavigableMap<K,V> tailMap(K fromKey, in tailMap() argument
2080 if (fromKey == null) in tailMap()
2083 (this, fromKey, inclusive, null, false, false); in tailMap()
2091 public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) { in subMap() argument
2092 return subMap(fromKey, true, toKey, false); in subMap()
2109 public ConcurrentNavigableMap<K,V> tailMap(K fromKey) { in tailMap() argument
2110 return tailMap(fromKey, true); in tailMap()
[all …]