Searched defs:toKey (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentNavigableMap.java32 K toKey, boolean toInclusive);
39 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive); argument
54 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); argument
61 ConcurrentNavigableMap<K,V> headMap(K toKey); argument
31 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
H A DConcurrentSkipListMap.java1947 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
1952 K toKey,
1954 if (fromKey == null || toKey == null)
1957 (this, fromKey, fromInclusive, toKey, toInclusive, false);
1962 * @throws NullPointerException if {@code toKey} is null
1965 public ConcurrentNavigableMap<K,V> headMap(K toKey, argument
1967 if (toKey == null)
1970 (this, null, false, toKey, inclusive, false);
1988 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
1991 public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) { argument
1950 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2000 headMap(K toKey) argument
2472 SubMap(ConcurrentSkipListMap<K,V> map, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, boolean isDescending) argument
2795 newSubMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2833 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2842 headMap(K toKey, boolean inclusive) argument
2856 subMap(K fromKey, K toKey) argument
2860 headMap(K toKey) argument
[all...]
/libcore/luni/src/main/java/java/util/
H A DNavigableMap.java270 * {@code fromKey} to {@code toKey}. If {@code fromKey} and
271 * {@code toKey} are equal, the returned map is empty unless
284 * @param toKey high endpoint of the keys in the returned map
288 * {@code fromKey} to {@code toKey}
289 * @throws ClassCastException if {@code fromKey} and {@code toKey}
293 * exception if {@code fromKey} or {@code toKey}
295 * @throws NullPointerException if {@code fromKey} or {@code toKey}
298 * {@code toKey}; or if this map itself has a restricted
299 * range, and {@code fromKey} or {@code toKey} lies
303 K toKey, boolea
302 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
332 headMap(K toKey, boolean inclusive) argument
372 subMap(K fromKey, K toKey) argument
383 headMap(K toKey) argument
[all...]
H A DTreeMap.java1742 Object toKey; field in class:TreeMap.SubMap
1754 return new BoundedMap(true, (K) fromKey, fromBound, (K) toKey, toBound);
H A DCollections.java3382 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
3383 return new CheckedSortedMap<K, V>(sm.subMap(fromKey, toKey), keyType, valueType);
3386 @Override public SortedMap<K, V> headMap(K toKey) { argument
3387 return new CheckedSortedMap<K, V>(sm.headMap(toKey), keyType, valueType);

Completed in 325 milliseconds