/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentNavigableMap.java | 62 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() argument 77 ConcurrentNavigableMap<K,V> tailMap(K fromKey, boolean inclusive); in tailMap() argument 84 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); in subMap() argument 98 ConcurrentNavigableMap<K,V> tailMap(K fromKey); in tailMap() argument
|
D | ConcurrentSkipListMap.java | 2050 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 …]
|
/libcore/ojluni/src/main/java/java/util/ |
D | NavigableMap.java | 333 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() argument 392 NavigableMap<K,V> tailMap(K fromKey, boolean inclusive); in tailMap() argument 403 SortedMap<K,V> subMap(K fromKey, K toKey); in subMap() argument 425 SortedMap<K,V> tailMap(K fromKey); in tailMap() argument
|
D | SortedMap.java | 154 SortedMap<K,V> subMap(K fromKey, K toKey); in subMap() argument 208 SortedMap<K,V> tailMap(K fromKey); in tailMap() argument
|
D | TreeMap.java | 938 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() argument 941 false, fromKey, fromInclusive, in subMap() 967 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) { in tailMap() argument 969 false, fromKey, inclusive, in tailMap() 980 public SortedMap<K,V> subMap(K fromKey, K toKey) { in subMap() argument 981 return subMap(fromKey, true, toKey, false); in subMap() 1002 public SortedMap<K,V> tailMap(K fromKey) { in tailMap() argument 1003 return tailMap(fromKey, true); in tailMap() 1643 public final SortedMap<K,V> subMap(K fromKey, K toKey) { in subMap() argument 1644 return subMap(fromKey, true, toKey, false); in subMap() [all …]
|
D | Collections.java | 1844 public SortedMap<K,V> subMap(K fromKey, K toKey) 1845 { return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey)); } 1848 public SortedMap<K,V> tailMap(K fromKey) 1849 { return new UnmodifiableSortedMap<>(sm.tailMap(fromKey)); } 1985 … public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 1987 nm.subMap(fromKey, fromInclusive, toKey, toInclusive)); 1992 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) 1993 { return unmodifiableNavigableMap(nm.tailMap(fromKey, inclusive)); } 2811 public SortedMap<K,V> subMap(K fromKey, K toKey) { 2814 sm.subMap(fromKey, toKey), mutex); [all …]
|