/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | TreeMapExtendTest.java | 4169 Set entrySet, tailSet; 4182 tailSet = descendingSubMapEntrySet.tailSet(entry); 4183 tailSetIterator = tailSet.iterator(); 4196 tailSet = descendingSubMapEntrySet.tailSet(entry, false); 4197 tailSetIterator = tailSet.iterator(); 4210 tailSet = descendingSubMapEntrySet.tailSet(entry, true); 4211 tailSetIterator = tailSet.iterator(); 4233 tailSet = descendingSubMapEntrySet.tailSet(entry); 4234 tailSetIterator = tailSet.iterator(); 4247 tailSet = descendingSubMapEntrySet.tailSet(entry, false); [all …]
|
D | TreeSetTest.java | 299 Set s = ts.tailSet(Integer.valueOf(900)); in test_tailSetLjava_lang_Object()
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | OldTreeSetTest.java | 223 Set s = ts.tailSet(Integer.valueOf(900)); in test_tailSetLjava_lang_Object() 228 SortedSet sort = ts.tailSet(Integer.valueOf(101)); in test_tailSetLjava_lang_Object() 231 sort.tailSet(Integer.valueOf(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/test/java/util/Collections/ |
D | EmptyNavigableSet.java | 325 NavigableSet subSet = navigableSet.tailSet(BigInteger.ONE, true); in testTailSetRanges() 328 subSet.tailSet(BigInteger.ONE, true); in testTailSetRanges() 331 NavigableSet ns = subSet.tailSet(BigInteger.ONE, false); in testTailSetRanges() 335 () -> ns.tailSet(BigInteger.ONE, true), in testTailSetRanges() 339 subSet.tailSet(isDescending(subSet) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailSetRanges() 348 () -> navigableSet.tailSet(null), in testTailSet() 352 () -> navigableSet.tailSet(new Object()), in testTailSet() 355 NavigableSet ss = navigableSet.tailSet("1", true); in testTailSet()
|
D | SyncSubMutexes.java | 64 … assertSame(getSyncCollectionMutex(instance.tailSet("Charlie")), getSyncCollectionMutex(instance)); in testSortedSets() 74 … assertSame(getSyncCollectionMutex(instance.tailSet("Charlie")), getSyncCollectionMutex(instance)); in testNavigableSets() 75 …assertSame(getSyncCollectionMutex(instance.tailSet("Charlie", true)), getSyncCollectionMutex(insta… in testNavigableSets() 193 …new Object[] {Collections.synchronizedSortedSet(new TreeSet<>(BASE_COLLECTION)).tailSet("Bravo")}); in makeSortedSets() 207 … Object[] {Collections.synchronizedNavigableSet(new TreeSet<>(BASE_COLLECTION)).tailSet("Bravo")}); in makeNavigableSets() 208 …t[] {Collections.synchronizedNavigableSet(new TreeSet<>(BASE_COLLECTION)).tailSet("Bravo", true)}); in makeNavigableSets()
|
/libcore/ojluni/src/main/java/java/util/ |
D | NavigableSet.java | 289 NavigableSet<E> tailSet(E fromElement, boolean inclusive); in tailSet() method 322 SortedSet<E> tailSet(E fromElement); in tailSet() method
|
D | TreeSet.java | 350 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() method in TreeSet 383 public SortedSet<E> tailSet(E fromElement) { in tailSet() method in TreeSet 384 return tailSet(fromElement, true); in tailSet()
|
D | SortedSet.java | 205 SortedSet<E> tailSet(E fromElement); in tailSet() method
|
D | ReverseOrderSortedSetView.java | 200 public SortedSet<E> tailSet(E from) { in tailSet() method in ReverseOrderSortedSetView 365 public SortedSet<E> tailSet(E from) { in tailSet() method
|
D | Collections.java | 1397 public SortedSet<E> tailSet(E fromElement) { in tailSet() method in UnmodifiableSortedSet 1398 return new UnmodifiableSortedSet<>(ss.tailSet(fromElement)); in tailSet() 1494 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() method in UnmodifiableNavigableSet 1496 ns.tailSet(fromElement, inclusive)); in tailSet() 2580 public SortedSet<E> tailSet(E fromElement) { 2582 return new SynchronizedSortedSet<>(ss.tailSet(fromElement),mutex); 2687 public NavigableSet<E> tailSet(E fromElement) { 2689 return new SynchronizedNavigableSet<>(ns.tailSet(fromElement, true), mutex); 2705 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { 2707 return new SynchronizedNavigableSet<>(ns.tailSet(fromElement, inclusive), mutex); [all …]
|
/libcore/ojluni/annotations/flagged_api/java/util/ |
D | NavigableSet.annotated.java | 69 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive); in tailSet() method 75 public java.util.SortedSet<E> tailSet(E fromElement); in tailSet() method
|
D | TreeSet.annotated.java | 64 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive) { throw new RuntimeExcep… in tailSet() method in TreeSet 70 public java.util.SortedSet<E> tailSet(E fromElement) { throw new RuntimeException("Stub!"); } in tailSet() method in TreeSet
|
D | SortedSet.annotated.java | 38 public java.util.SortedSet<E> tailSet(E fromElement); in tailSet() method
|
/libcore/ojluni/src/test/java/util/SequencedCollection/ |
D | SimpleSortedSet.java | 138 public SortedSet<E> tailSet(E fromElement) { in tailSet() method in SimpleSortedSet 139 return set.tailSet(fromElement); in tailSet()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListSet.java | 459 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() method in ConcurrentSkipListSet 487 public NavigableSet<E> tailSet(E fromElement) { in tailSet() method in ConcurrentSkipListSet 488 return tailSet(fromElement, true); in tailSet()
|
/libcore/ojluni/annotations/flagged_api/java/util/concurrent/ |
D | ConcurrentSkipListSet.annotated.java | 100 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive) { throw new RuntimeExcep… in tailSet() method in ConcurrentSkipListSet 106 public java.util.NavigableSet<E> tailSet(E fromElement) { throw new RuntimeException("Stub!"); } in tailSet() method in ConcurrentSkipListSet
|
/libcore/ojluni/src/test/java/util/Collection/ |
D | BiggernYours.java | 104 compareCollections(s1.tailSet(Integer.MIN_VALUE), in compareNavigableSets() 105 s2.tailSet(Integer.MIN_VALUE)); in compareNavigableSets()
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | TreeSubSetTest.java | 114 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()
|
D | ConcurrentSkipListSubSetTest.java | 117 return set.tailSet(m1, true); in set0() 616 SortedSet sm = set.tailSet(two); in testTailSetContents() 634 SortedSet ssm = sm.tailSet(four); in testTailSetContents() 1115 SortedSet sm = set.tailSet(m2); in testDescendingTailSetContents() 1133 SortedSet ssm = sm.tailSet(m4); in testDescendingTailSetContents()
|
D | ConcurrentSkipListSetTest.java | 666 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()
|
D | TreeSetTest.java | 662 SortedSet sm = set.tailSet(two); in testTailSetContents() 680 SortedSet ssm = sm.tailSet(four); in testTailSetContents() 839 NavigableSet<Integer> tm = set.tailSet(midPoint,incl); in bashSubSet()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ConcurrentSkipListSubSetTest.java | 94 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()
|
D | TreeSubSetTest.java | 91 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()
|
D | ConcurrentSkipListSetTest.java | 636 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()
|
D | TreeSetTest.java | 639 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()
|