Searched refs:toKey (Results 1 - 10 of 10) sorted by relevance

/openjdk10/jdk/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentNavigableMap.java63 K toKey, boolean toInclusive);
70 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive); argument
84 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); argument
91 ConcurrentNavigableMap<K,V> headMap(K toKey); argument
62 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
H A DConcurrentSkipListMap.java2070 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
2075 K toKey,
2077 if (fromKey == null || toKey == null)
2080 (this, fromKey, fromInclusive, toKey, toInclusive, false);
2085 * @throws NullPointerException if {@code toKey} is null
2088 public ConcurrentNavigableMap<K,V> headMap(K toKey, argument
2090 if (toKey == null)
2093 (this, null, false, toKey, inclusive, false);
2111 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
2114 public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) { argument
2073 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2123 headMap(K toKey) argument
2614 SubMap(ConcurrentSkipListMap<K,V> map, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, boolean isDescending) argument
2941 newSubMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2978 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2985 headMap(K toKey, boolean inclusive) argument
2997 subMap(K fromKey, K toKey) argument
3001 headMap(K toKey) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DSortedMap.java127 * {@code fromKey}, inclusive, to {@code toKey}, exclusive. (If
128 * {@code fromKey} and {@code toKey} are equal, the returned map
138 * @param toKey high endpoint (exclusive) of the keys in the returned map
140 * {@code fromKey}, inclusive, to {@code toKey}, exclusive
141 * @throws ClassCastException if {@code fromKey} and {@code toKey}
145 * exception if {@code fromKey} or {@code toKey}
147 * @throws NullPointerException if {@code fromKey} or {@code toKey}
150 * {@code toKey}; or if this map itself has a restricted
151 * range, and {@code fromKey} or {@code toKey} lies
154 SortedMap<K,V> subMap(K fromKey, K toKey); argument
181 headMap(K toKey) argument
[all...]
H A DNavigableMap.java301 * {@code fromKey} to {@code toKey}. If {@code fromKey} and
302 * {@code toKey} are equal, the returned map is empty unless
315 * @param toKey high endpoint of the keys in the returned map
319 * {@code fromKey} to {@code toKey}
320 * @throws ClassCastException if {@code fromKey} and {@code toKey}
324 * exception if {@code fromKey} or {@code toKey}
326 * @throws NullPointerException if {@code fromKey} or {@code toKey}
329 * {@code toKey}; or if this map itself has a restricted
330 * range, and {@code fromKey} or {@code toKey} lies
334 K toKey, boolea
333 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
363 headMap(K toKey, boolean inclusive) argument
403 subMap(K fromKey, K toKey) argument
414 headMap(K toKey) argument
[all...]
H A DTreeMap.java902 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
909 K toKey, boolean toInclusive) {
912 false, toKey, toInclusive);
917 * @throws NullPointerException if {@code toKey} is null
923 public NavigableMap<K,V> headMap(K toKey, boolean inclusive) { argument
926 false, toKey, inclusive);
945 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
950 public SortedMap<K,V> subMap(K fromKey, K toKey) { argument
951 return subMap(fromKey, true, toKey, false);
956 * @throws NullPointerException if {@code toKey} i
908 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
961 headMap(K toKey) argument
1608 subMap(K fromKey, K toKey) argument
1612 headMap(K toKey) argument
1859 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1870 headMap(K toKey, boolean inclusive) argument
1944 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1955 headMap(K toKey, boolean inclusive) argument
2024 private K fromKey, toKey; field in class:TreeMap.SubMap
2033 subMap(K fromKey, K toKey) argument
2034 headMap(K toKey) argument
[all...]
H A DCollections.java1801 public SortedMap<K,V> subMap(K fromKey, K toKey) argument
1802 { return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey)); }
1803 public SortedMap<K,V> headMap(K toKey) argument
1804 { return new UnmodifiableSortedMap<>(sm.headMap(toKey)); }
1942 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { argument
1944 nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
1947 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) argument
1948 { return unmodifiableNavigableMap(nm.headMap(toKey, inclusive)); }
2774 public SortedMap<K,V> subMap(K fromKey, K toKey) { argument
2777 sm.subMap(fromKey, toKey), mute
2780 headMap(K toKey) argument
2921 subMap(K fromKey, K toKey) argument
2927 headMap(K toKey) argument
2938 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2945 headMap(K toKey, boolean inclusive) argument
3983 subMap(K fromKey, K toKey) argument
3987 headMap(K toKey) argument
4138 subMap(K fromKey, K toKey) argument
4144 headMap(K toKey) argument
4153 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
4157 headMap(K toKey, boolean inclusive) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DPropMap.java308 public SortedMap<String, String> subMap(String fromKey, String toKey) { argument
309 return theMap.subMap(fromKey, toKey);
313 public SortedMap<String, String> headMap(String toKey) { argument
314 return theMap.headMap(toKey);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DArrayIndex.java203 public static String toKey(final int index) { method in class:ArrayIndex
/openjdk10/jdk/src/java.base/share/classes/java/time/format/
H A DDateTimeFormatterBuilder.java4378 k = toKey(k);
4479 protected String toKey(String k) { method in class:DateTimeFormatterBuilder.PrefixTree
4573 protected String toKey(String k) { method in class:DateTimeFormatterBuilder.PrefixTree.LENIENT
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DScriptObject.java3297 return hasArrayKeys && hasProperty(ArrayIndex.toKey(index), true);
3320 return getArray().has(index) || getMap().containsArrayKeys() && hasProperty(ArrayIndex.toKey(index), false);

Completed in 149 milliseconds