Searched refs:fromKey (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentNavigableMap.java62 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, argument
77 ConcurrentNavigableMap<K,V> tailMap(K fromKey, boolean inclusive); argument
84 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); argument
98 ConcurrentNavigableMap<K,V> tailMap(K fromKey); argument
H A DConcurrentSkipListMap.java2047 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
2050 public ConcurrentNavigableMap<K,V> subMap(K fromKey, argument
2054 if (fromKey == null || toKey == null)
2057 (this, fromKey, fromInclusive, toKey, toInclusive, false);
2075 * @throws NullPointerException if {@code fromKey} is null
2078 public ConcurrentNavigableMap<K,V> tailMap(K fromKey, argument
2080 if (fromKey == null)
2083 (this, fromKey, inclusive, null, false, false);
2088 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
2091 public ConcurrentNavigableMap<K,V> subMap(K fromKey, argument
2109 tailMap(K fromKey) 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
2968 tailMap(K fromKey, boolean inclusive) argument
2974 subMap(K fromKey, K toKey) argument
2982 tailMap(K fromKey) 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
137 * @param fromKey low endpoint (inclusive) 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}
149 * @throws IllegalArgumentException if {@code fromKey} is greater than
151 * range, and {@code fromKey} or {@code toKey} lies
154 SortedMap<K,V> subMap(K fromKey, argument
208 tailMap(K fromKey) argument
[all...]
H A DNavigableMap.java301 * {@code fromKey} to {@code toKey}. If {@code fromKey} and
312 * @param fromKey low 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}
328 * @throws IllegalArgumentException if {@code fromKey} is greater than
330 * range, and {@code fromKey} or {@code toKey} lies
333 NavigableMap<K,V> subMap(K fromKey, boolea argument
392 tailMap(K fromKey, boolean inclusive) argument
403 subMap(K fromKey, K toKey) argument
425 tailMap(K fromKey) argument
[all...]
H A DTreeMap.java906 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
912 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, argument
915 false, fromKey, fromInclusive,
935 * @throws NullPointerException if {@code fromKey} is null
941 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) { argument
943 false, fromKey, 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);
971 * @throws NullPointerException if {@code fromKey} i
976 tailMap(K fromKey) argument
1617 subMap(K fromKey, K toKey) argument
1625 tailMap(K fromKey) argument
1868 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1891 tailMap(K fromKey, boolean inclusive) argument
1961 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1984 tailMap(K fromKey, boolean inclusive) argument
2049 private K fromKey, toKey; field in class:TreeMap.SubMap
2058 subMap(K fromKey, K toKey) argument
2060 tailMap(K fromKey) argument
[all...]
H A DCollections.java1844 public SortedMap<K,V> subMap(K fromKey, K toKey) argument
1845 { return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey)); }
1848 public SortedMap<K,V> tailMap(K fromKey) argument
1849 { return new UnmodifiableSortedMap<>(sm.tailMap(fromKey)); }
1985 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { argument
1987 nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
1992 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) argument
1993 { return unmodifiableNavigableMap(nm.tailMap(fromKey, inclusive)); }
2811 public SortedMap<K,V> subMap(K fromKey, K toKey) { argument
2814 sm.subMap(fromKey, toKe
2822 tailMap(K fromKey) argument
2957 subMap(K fromKey, K toKey) argument
2968 tailMap(K fromKey) argument
2974 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2988 tailMap(K fromKey, boolean inclusive) argument
4023 subMap(K fromKey, K toKey) argument
4030 tailMap(K fromKey) argument
4178 subMap(K fromKey, K toKey) argument
4189 tailMap(K fromKey) argument
4193 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
4201 tailMap(K fromKey, boolean inclusive) argument
[all...]

Completed in 4457 milliseconds