Searched defs:toKey (Results 1 - 6 of 6) 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
53 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); argument
60 ConcurrentNavigableMap<K,V> headMap(K toKey); argument
31 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
H A DConcurrentSkipListMap.java1946 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
1951 K toKey,
1953 if (fromKey == null || toKey == null)
1956 (this, fromKey, fromInclusive, toKey, toInclusive, false);
1961 * @throws NullPointerException if {@code toKey} is null
1964 public ConcurrentNavigableMap<K,V> headMap(K toKey, argument
1966 if (toKey == null)
1969 (this, null, false, toKey, inclusive, false);
1987 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
1990 public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) { argument
1949 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1999 headMap(K toKey) argument
2471 SubMap(ConcurrentSkipListMap<K,V> map, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, boolean isDescending) argument
2794 newSubMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2832 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2841 headMap(K toKey, boolean inclusive) argument
2855 subMap(K fromKey, K toKey) argument
2859 headMap(K toKey) argument
[all...]
/libcore/luni/src/main/java/java/util/
H A DNavigableMap.java264 * {@code fromKey} to {@code toKey}. If {@code fromKey} and
265 * {@code toKey} are equal, the returned map is empty unless
278 * @param toKey high endpoint of the keys in the returned map
282 * {@code fromKey} to {@code toKey}
283 * @throws ClassCastException if {@code fromKey} and {@code toKey}
287 * exception if {@code fromKey} or {@code toKey}
289 * @throws NullPointerException if {@code fromKey} or {@code toKey}
292 * {@code toKey}; or if this map itself has a restricted
293 * range, and {@code fromKey} or {@code toKey} lies
297 K toKey, boolea
296 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
326 headMap(K toKey, boolean inclusive) argument
366 subMap(K fromKey, K toKey) argument
377 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.java3375 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
3376 return new CheckedSortedMap<K, V>(sm.subMap(fromKey, toKey), keyType, valueType);
3379 @Override public SortedMap<K, V> headMap(K toKey) { argument
3380 return new CheckedSortedMap<K, V>(sm.headMap(toKey), keyType, valueType);
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 177 milliseconds