/libcore/ojluni/src/main/java/java/util/ |
D | NavigableSet.java | 230 NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet() argument 289 NavigableSet<E> tailSet(E fromElement, boolean inclusive); in tailSet() argument 300 SortedSet<E> subSet(E fromElement, E toElement); in subSet() argument 322 SortedSet<E> tailSet(E fromElement); in tailSet() argument
|
D | TreeSet.java | 324 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet() argument 326 return new TreeSet<>(m.subMap(fromElement, fromInclusive, in subSet() 350 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() argument 351 return new TreeSet<>(m.tailMap(fromElement, inclusive)); in tailSet() 361 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() argument 362 return subSet(fromElement, true, toElement, false); in subSet() 383 public SortedSet<E> tailSet(E fromElement) { in tailSet() argument 384 return tailSet(fromElement, true); in tailSet()
|
D | SortedSet.java | 151 SortedSet<E> subSet(E fromElement, E toElement); in subSet() argument 205 SortedSet<E> tailSet(E fromElement); in tailSet() argument
|
D | Collections.java | 1391 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() argument 1392 return new UnmodifiableSortedSet<>(ss.subSet(fromElement,toElement)); in subSet() 1397 public SortedSet<E> tailSet(E fromElement) { in tailSet() argument 1398 return new UnmodifiableSortedSet<>(ss.tailSet(fromElement)); in tailSet() 1484 …public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusi… in subSet() argument 1486 ns.subSet(fromElement, fromInclusive, toElement, toInclusive)); in subSet() 1494 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() argument 1496 ns.tailSet(fromElement, inclusive)); in tailSet() 2569 public SortedSet<E> subSet(E fromElement, E toElement) { 2572 ss.subSet(fromElement, toElement), mutex); [all …]
|
D | TreeMap.java | 1470 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet() argument 1472 return new KeySet<>(m.subMap(fromElement, fromInclusive, in subSet() 1478 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() argument 1479 return new KeySet<>(m.tailMap(fromElement, inclusive)); in tailSet() 1481 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() argument 1482 return subSet(fromElement, true, toElement, false); in subSet() 1487 public SortedSet<E> tailSet(E fromElement) { in tailSet() argument 1488 return tailSet(fromElement, true); in tailSet()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListSet.java | 436 public NavigableSet<E> subSet(E fromElement, in subSet() argument 441 (m.subMap(fromElement, fromInclusive, in subSet() 459 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() argument 460 return new ConcurrentSkipListSet<E>(m.tailMap(fromElement, inclusive)); in tailSet() 469 public NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() argument 470 return subSet(fromElement, true, toElement, false); in subSet() 487 public NavigableSet<E> tailSet(E fromElement) { in tailSet() argument 488 return tailSet(fromElement, true); in tailSet()
|
D | ConcurrentSkipListMap.java | 2239 public NavigableSet<K> subSet(K fromElement, in subSet() argument 2243 return new KeySet<>(m.subMap(fromElement, fromInclusive, in subSet() 2249 public NavigableSet<K> tailSet(K fromElement, boolean inclusive) { in tailSet() argument 2250 return new KeySet<>(m.tailMap(fromElement, inclusive)); in tailSet() 2252 public NavigableSet<K> subSet(K fromElement, K toElement) { in subSet() argument 2253 return subSet(fromElement, true, toElement, false); in subSet() 2258 public NavigableSet<K> tailSet(K fromElement) { in tailSet() argument 2259 return tailSet(fromElement, true); in tailSet()
|
/libcore/ojluni/annotations/flagged_api/java/util/ |
D | NavigableSet.annotated.java | 65 public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean … in subSet() argument 69 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive); in tailSet() argument 71 public java.util.SortedSet<E> subSet(E fromElement, E toElement); in subSet() argument 75 public java.util.SortedSet<E> tailSet(E fromElement); in tailSet() argument
|
D | TreeSet.annotated.java | 60 public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean … in subSet() argument 64 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive) { throw new RuntimeExcep… in tailSet() argument 66 public java.util.SortedSet<E> subSet(E fromElement, E toElement) { throw new RuntimeException("Stub… in subSet() argument 70 public java.util.SortedSet<E> tailSet(E fromElement) { throw new RuntimeException("Stub!"); } in tailSet() argument
|
D | SortedSet.annotated.java | 34 public java.util.SortedSet<E> subSet(E fromElement, E toElement); in subSet() argument 38 public java.util.SortedSet<E> tailSet(E fromElement); in tailSet() argument
|
/libcore/ojluni/src/test/java/util/SequencedCollection/ |
D | SimpleSortedSet.java | 134 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() argument 135 return set.subSet(fromElement, toElement); in subSet() 138 public SortedSet<E> tailSet(E fromElement) { in tailSet() argument 139 return set.tailSet(fromElement); in tailSet()
|
/libcore/ojluni/annotations/flagged_api/java/util/concurrent/ |
D | ConcurrentSkipListSet.annotated.java | 96 public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean … in subSet() argument 100 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive) { throw new RuntimeExcep… in tailSet() argument 102 public java.util.NavigableSet<E> subSet(E fromElement, E toElement) { throw new RuntimeException("S… in subSet() argument 106 public java.util.NavigableSet<E> tailSet(E fromElement) { throw new RuntimeException("Stub!"); } in tailSet() argument
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | Collections.java | 1193 public java.util.NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() argument 1201 public java.util.NavigableSet<E> tailSet(E fromElement) { in tailSet() argument 1206 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument 1214 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() argument 1375 public java.util.SortedSet<E> subSet(E fromElement, E toElement) { in subSet() argument 1383 public java.util.SortedSet<E> tailSet(E fromElement) { in tailSet() argument 2686 public java.util.NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() argument 2694 public java.util.NavigableSet<E> tailSet(E fromElement) { in tailSet() argument 2699 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument 2707 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet() argument [all …]
|