Home
last modified time | relevance | path

Searched refs:tailSet (Results 1 – 14 of 14) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/
DOldTreeSetTest.java223 Set s = ts.tailSet(new Integer(900)); in test_tailSetLjava_lang_Object()
228 SortedSet sort = ts.tailSet(new Integer(101)); in test_tailSetLjava_lang_Object()
231 sort.tailSet(new Integer(100)); in test_tailSetLjava_lang_Object()
238 ts.tailSet(this); in test_tailSetLjava_lang_Object()
245 ts.tailSet(null); in test_tailSetLjava_lang_Object()
/libcore/ojluni/src/main/java/java/util/
DTreeSet.java349 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() method in TreeSet
382 public SortedSet<E> tailSet(E fromElement) { in tailSet() method in TreeSet
383 return tailSet(fromElement, true); in tailSet()
DSortedSet.java205 SortedSet<E> tailSet(E fromElement); in tailSet() method
DCollections.java1220 public SortedSet<E> tailSet(E fromElement) { in tailSet() method in UnmodifiableSortedSet
1221 return new UnmodifiableSortedSet<>(ss.tailSet(fromElement)); in tailSet()
1311 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() method in UnmodifiableNavigableSet
1313 ns.tailSet(fromElement, inclusive)); in tailSet()
2272 public SortedSet<E> tailSet(E fromElement) {
2274 return new SynchronizedSortedSet<>(ss.tailSet(fromElement),mutex);
2376 public NavigableSet<E> tailSet(E fromElement) {
2378 return new SynchronizedNavigableSet<>(ns.tailSet(fromElement, true), mutex);
2394 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
2396 return new SynchronizedNavigableSet<>(ns.tailSet(fromElement, inclusive), mutex);
[all …]
DTreeMap.java1168 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() method in TreeMap.KeySet
1177 public SortedSet<E> tailSet(E fromElement) { in tailSet() method in TreeMap.KeySet
1178 return tailSet(fromElement, true); in tailSet()
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListSet.java437 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() method in ConcurrentSkipListSet
465 public NavigableSet<E> tailSet(E fromElement) { in tailSet() method in ConcurrentSkipListSet
466 return tailSet(fromElement, true); in tailSet()
DConcurrentSkipListMap.java2417 public NavigableSet<K> tailSet(K fromElement, boolean inclusive) { in tailSet() method in ConcurrentSkipListMap.KeySet
2426 public NavigableSet<K> tailSet(K fromElement) { in tailSet() method in ConcurrentSkipListMap.KeySet
2427 return tailSet(fromElement, true); in tailSet()
/libcore/jsr166-tests/src/test/java/jsr166/
DTreeSubSetTest.java91 return set.tailSet(m1, false); in set0()
590 SortedSet sm = set.tailSet(two); in testTailSetContents()
608 SortedSet ssm = sm.tailSet(four); in testTailSetContents()
1079 SortedSet sm = set.tailSet(m2); in testDescendingTailSetContents()
1097 SortedSet ssm = sm.tailSet(m4); in testDescendingTailSetContents()
DConcurrentSkipListSubSetTest.java94 return set.tailSet(m1, true); in set0()
593 SortedSet sm = set.tailSet(two); in testTailSetContents()
611 SortedSet ssm = sm.tailSet(four); in testTailSetContents()
1092 SortedSet sm = set.tailSet(m2); in testDescendingTailSetContents()
1110 SortedSet ssm = sm.tailSet(m4); in testDescendingTailSetContents()
DTreeSetTest.java639 SortedSet sm = set.tailSet(two); in testTailSetContents()
657 SortedSet ssm = sm.tailSet(four); in testTailSetContents()
815 NavigableSet<Integer> tm = set.tailSet(midPoint,incl); in bashSubSet()
DConcurrentSkipListSetTest.java636 SortedSet sm = set.tailSet(two); in testTailSetContents()
654 SortedSet ssm = sm.tailSet(four); in testTailSetContents()
813 NavigableSet<Integer> tm = set.tailSet(midPoint,incl); in bashSubSet()
/libcore/ojluni/src/test/java/util/concurrent/tck/
DTreeSubSetTest.java114 return set.tailSet(m1, false); in set0()
613 SortedSet sm = set.tailSet(two); in testTailSetContents()
631 SortedSet ssm = sm.tailSet(four); in testTailSetContents()
1102 SortedSet sm = set.tailSet(m2); in testDescendingTailSetContents()
1120 SortedSet ssm = sm.tailSet(m4); in testDescendingTailSetContents()
DConcurrentSkipListSetTest.java666 SortedSet sm = set.tailSet(two); in testTailSetContents()
684 SortedSet ssm = sm.tailSet(four); in testTailSetContents()
844 NavigableSet<Integer> tm = set.tailSet(midPoint,incl); in bashSubSet()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DTreeSetTest.java299 Set s = ts.tailSet(new Integer(900)); in test_tailSetLjava_lang_Object()