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

/libcore/ojluni/src/main/java/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.java2047 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
2052 K toKey,
2054 if (fromKey == null || toKey == null)
2057 (this, fromKey, fromInclusive, toKey, toInclusive, false);
2062 * @throws NullPointerException if {@code toKey} is null
2065 public ConcurrentNavigableMap<K,V> headMap(K toKey, argument
2067 if (toKey == null)
2070 (this, null, false, toKey, inclusive, false);
2088 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
2091 public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) { argument
2050 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2100 headMap(K toKey) argument
2591 SubMap(ConcurrentSkipListMap<K,V> map, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, boolean isDescending) argument
2918 newSubMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2955 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2962 headMap(K toKey, boolean inclusive) argument
2974 subMap(K fromKey, K toKey) argument
2978 headMap(K toKey) argument
[all...]
/libcore/ojluni/src/main/java/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.java906 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
913 K toKey, boolean toInclusive) {
916 false, toKey, toInclusive);
921 * @throws NullPointerException if {@code toKey} is null
927 public NavigableMap<K,V> headMap(K toKey, boolean inclusive) { argument
930 false, toKey, inclusive);
949 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
954 public SortedMap<K,V> subMap(K fromKey, K toKey) { argument
955 return subMap(fromKey, true, toKey, false);
960 * @throws NullPointerException if {@code toKey} i
912 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
965 headMap(K toKey) argument
1617 subMap(K fromKey, K toKey) argument
1621 headMap(K toKey) argument
1868 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1879 headMap(K toKey, boolean inclusive) argument
1961 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1972 headMap(K toKey, boolean inclusive) argument
2049 private K fromKey, toKey; field in class:TreeMap.SubMap
2058 subMap(K fromKey, K toKey) argument
2059 headMap(K toKey) argument
[all...]
H A DCollections.java1844 public SortedMap<K,V> subMap(K fromKey, K toKey) argument
1845 { return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey)); }
1846 public SortedMap<K,V> headMap(K toKey) argument
1847 { return new UnmodifiableSortedMap<>(sm.headMap(toKey)); }
1985 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { argument
1987 nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
1990 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) argument
1991 { return unmodifiableNavigableMap(nm.headMap(toKey, inclusive)); }
2811 public SortedMap<K,V> subMap(K fromKey, K toKey) { argument
2814 sm.subMap(fromKey, toKey), mute
2817 headMap(K toKey) argument
2957 subMap(K fromKey, K toKey) argument
2963 headMap(K toKey) argument
2974 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2981 headMap(K toKey, boolean inclusive) argument
4023 subMap(K fromKey, K toKey) argument
4027 headMap(K toKey) argument
4178 subMap(K fromKey, K toKey) argument
4184 headMap(K toKey) argument
4193 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
4197 headMap(K toKey, boolean inclusive) argument
[all...]
/libcore/ojluni/src/main/java/java/time/format/
H A DDateTimeFormatterBuilder.java4048 k = toKey(k);
4149 protected String toKey(String k) { method in class:DateTimeFormatterBuilder.PrefixTree
4243 protected String toKey(String k) { method in class:DateTimeFormatterBuilder.PrefixTree.LENIENT

Completed in 171 milliseconds