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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentNavigableMap.java60 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, argument
76 ConcurrentNavigableMap<K,V> tailMap(K fromKey, boolean inclusive); argument
83 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); argument
97 ConcurrentNavigableMap<K,V> tailMap(K fromKey); argument
H A DConcurrentSkipListMap.java1975 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
1978 public ConcurrentNavigableMap<K,V> subMap(K fromKey, argument
1982 if (fromKey == null || toKey == null)
1985 (this, fromKey, fromInclusive, toKey, toInclusive, false);
2003 * @throws NullPointerException if {@code fromKey} is null
2006 public ConcurrentNavigableMap<K,V> tailMap(K fromKey, argument
2008 if (fromKey == null)
2011 (this, fromKey, inclusive, null, false, false);
2016 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
2019 public ConcurrentNavigableMap<K,V> subMap(K fromKey, argument
2037 tailMap(K fromKey) argument
2500 SubMap(ConcurrentSkipListMap<K,V> map, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, boolean isDescending) argument
2823 newSubMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2861 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2877 tailMap(K fromKey, boolean inclusive) argument
2884 subMap(K fromKey, K toKey) argument
2892 tailMap(K fromKey) argument
[all...]
/openjdk7/jdk/src/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
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.java299 * {@code fromKey} to {@code toKey}. If {@code fromKey} and
310 * @param fromKey low endpoint of the keys in the returned map
317 * {@code fromKey} to {@code toKey}
318 * @throws ClassCastException if {@code fromKey} and {@code toKey}
322 * exception if {@code fromKey} or {@code toKey}
324 * @throws NullPointerException if {@code fromKey} or {@code toKey}
326 * @throws IllegalArgumentException if {@code fromKey} is greater than
328 * range, and {@code fromKey} or {@code toKey} lies
331 NavigableMap<K,V> subMap(K fromKey, boolea argument
390 tailMap(K fromKey, boolean inclusive) argument
401 subMap(K fromKey, K toKey) argument
423 tailMap(K fromKey) argument
[all...]
H A DTreeMap.java869 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
875 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, argument
878 false, fromKey, fromInclusive,
898 * @throws NullPointerException if {@code fromKey} is null
904 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) { argument
906 false, fromKey, inclusive,
912 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
917 public SortedMap<K,V> subMap(K fromKey, K toKey) { argument
918 return subMap(fromKey, true, toKey, false);
934 * @throws NullPointerException if {@code fromKey} i
939 tailMap(K fromKey) argument
1502 subMap(K fromKey, K toKey) argument
1510 tailMap(K fromKey) argument
1706 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1725 tailMap(K fromKey, boolean inclusive) argument
1787 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1806 tailMap(K fromKey, boolean inclusive) argument
1863 private K fromKey, toKey; field in class:TreeMap.SubMap
1872 subMap(K fromKey, K toKey) argument
1874 tailMap(K fromKey) argument
[all...]
H A DCollections.java1539 public SortedMap<K,V> subMap(K fromKey, K toKey) { argument
1540 return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey));
1545 public SortedMap<K,V> tailMap(K fromKey) { argument
1546 return new UnmodifiableSortedMap<>(sm.tailMap(fromKey));
2168 public SortedMap<K,V> subMap(K fromKey, K toKey) { argument
2171 sm.subMap(fromKey, toKey), mutex);
2179 public SortedMap<K,V> tailMap(K fromKey) { argument
2181 return new SynchronizedSortedMap<>(sm.tailMap(fromKey),mutex);
2960 public SortedMap<K,V> subMap(K fromKey, K toKey) { argument
2961 return checkedSortedMap(sm.subMap(fromKey, toKe
2967 tailMap(K fromKey) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPropMap.java315 public SortedMap<Object, Object> subMap(Object fromKey, Object toKey) { argument
316 return theMap.subMap(fromKey, toKey);
325 public SortedMap<Object, Object> tailMap(Object fromKey) { argument
326 return theMap.tailMap(fromKey);

Completed in 55 milliseconds