Searched refs:subMap (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentNavigableMap.java60 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, method in interface:ConcurrentNavigableMap
83 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey); method in interface:ConcurrentNavigableMap
H A DConcurrentSkipListSet.java408 (m.subMap(fromElement, fromInclusive,
H A DConcurrentSkipListMap.java1978 public ConcurrentNavigableMap<K,V> subMap(K fromKey, method in class:ConcurrentSkipListMap
2019 public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) { method in class:ConcurrentSkipListMap
2020 return subMap(fromKey, true, toKey, false);
2358 return new KeySet<E>(m.subMap(fromElement, fromInclusive,
2469 * constructed only using the <tt>subMap</tt>, <tt>headMap</tt>, and
2861 public SubMap<K,V> subMap(K fromKey, method in class:ConcurrentSkipListMap.SubMap
2884 public SubMap<K,V> subMap(K fromKey, K toKey) { method in class:ConcurrentSkipListMap.SubMap
2885 return subMap(fromKey, true, toKey, false);
/openjdk7/jdk/src/share/classes/java/util/
H A DSortedMap.java87 * SortedMap&lt;String, V&gt; sub = m.subMap(low, high+"\0");</pre>
93 * SortedMap&lt;String, V&gt; sub = m.subMap(low+"\0", high);</pre>
154 SortedMap<K,V> subMap(K fromKey, K toKey); method in interface:SortedMap
H A DNavigableMap.java55 * ones. Methods {@code subMap}, {@code headMap},
75 * {@link #subMap(Object, Object) subMap(K, K)},
331 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, method in interface:NavigableMap
395 * <p>Equivalent to {@code subMap(fromKey, true, toKey, false)}.
401 SortedMap<K,V> subMap(K fromKey, K toKey); method in interface:NavigableMap
H A DTreeSet.java325 return new TreeSet<>(m.subMap(fromElement, fromInclusive,
H A DTreeMap.java875 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, method in class:TreeMap
917 public SortedMap<K,V> subMap(K fromKey, K toKey) { method in class:TreeMap
918 return subMap(fromKey, true, toKey, false);
1069 return new KeySet<>(m.subMap(fromElement, fromInclusive,
1502 public final SortedMap<K,V> subMap(K fromKey, K toKey) { method in class:TreeMap.NavigableSubMap
1503 return subMap(fromKey, true, toKey, false);
1706 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, method in class:TreeMap.AscendingSubMap
1787 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, method in class:TreeMap.DescendingSubMap
1872 public SortedMap<K,V> subMap(K fromKey, K toKey) { throw new InternalError(); } method in class:TreeMap.SubMap
H A DCollections.java1511 * <tt>subMap</tt>, <tt>headMap</tt>, or <tt>tailMap</tt> views, result in
1539 public SortedMap<K,V> subMap(K fromKey, K toKey) { method in class:Collections.UnmodifiableSortedMap
1540 return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey));
2105 * collections views of any of its <tt>subMap</tt>, <tt>headMap</tt> or
2121 * SortedMap m2 = m.subMap(foo, bar);
2168 public SortedMap<K,V> subMap(K fromKey, K toKey) { method in class:Collections.SynchronizedSortedMap
2171 sm.subMap(fromKey, toKey), mutex);
2960 public SortedMap<K,V> subMap(K fromKey, K toKey) { method in class:Collections.CheckedSortedMap
2961 return checkedSortedMap(sm.subMap(fromKey, toKey),
/openjdk7/jdk/test/java/util/TreeMap/
H A DSubMap.java38 SortedMap m2 = m.subMap(new Integer(2), new Integer(2));
58 SortedMap m3 = m.subMap(new Integer(2), new Integer(3));
/openjdk7/jdk/test/java/util/NavigableMap/
H A DLockStep.java116 ? m.subMap(Integer.MIN_VALUE, true, Integer.MAX_VALUE, true)
117 : m.subMap(Integer.MAX_VALUE, true, Integer.MIN_VALUE, true);
374 equal2(m, m.subMap(a, true, z, true));
376 testEmptyMap(m.subMap(a, true, a, false));
377 testEmptyMap(m.subMap(z, true, z, false));
481 equalNavigableMapsLeaf(m1.subMap(min, true, max, true),
482 m2.subMap(min, true, max, true));
493 equalNavigableMapsLeaf((NavigableMap) m1.subMap(min, max),
494 (NavigableMap) m2.subMap(min, max));
623 m.subMap(
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPropMap.java153 // the map is sorted, and has a subMap accessor.
160 //System.out.println(prefix+" => "+subMap(prefix, limit));
161 return subMap(prefix, limit);
315 public SortedMap<Object, Object> subMap(Object fromKey, Object toKey) { method in class:PropMap
316 return theMap.subMap(fromKey, toKey);
/openjdk7/jdk/test/java/util/Collection/
H A DMOAT.java818 testNavigableMap(nm.subMap(1, true, 6, false));
819 testNavigableMap(nm.subMap(0, false, 5, true));
1029 return m.subMap(-99, true, 99, false); }},
1052 equal(m.subMap(-86, false, 86, true).remove(k), v); }},

Completed in 502 milliseconds