/libcore/ojluni/src/main/java/java/util/ |
D | TreeSet.java | 324 E toElement, boolean toInclusive) { in subSet() argument 326 toElement, toInclusive)); in subSet() 337 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() argument 338 return new TreeSet<>(m.headMap(toElement, inclusive)); in headSet() 360 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() argument 361 return subSet(fromElement, true, toElement, false); in subSet() 371 public SortedSet<E> headSet(E toElement) { in headSet() argument 372 return headSet(toElement, false); in headSet()
|
D | SortedSet.java | 151 SortedSet<E> subSet(E fromElement, E toElement); in subSet() argument 178 SortedSet<E> headSet(E toElement); in headSet() argument
|
D | Collections.java | 1214 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() argument 1215 return new UnmodifiableSortedSet<>(ss.subSet(fromElement,toElement)); in subSet() 1217 public SortedSet<E> headSet(E toElement) { in headSet() argument 1218 return new UnmodifiableSortedSet<>(ss.headSet(toElement)); in headSet() 1301 …public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusi… in subSet() argument 1303 ns.subSet(fromElement, fromInclusive, toElement, toInclusive)); in subSet() 1306 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() argument 1308 ns.headSet(toElement, inclusive)); in headSet() 2261 public SortedSet<E> subSet(E fromElement, E toElement) { 2264 ss.subSet(fromElement, toElement), mutex); [all …]
|
D | TreeMap.java | 1161 E toElement, boolean toInclusive) { in subSet() argument 1163 toElement, toInclusive)); in subSet() 1165 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() argument 1166 return new KeySet<>(m.headMap(toElement, inclusive)); in headSet() 1171 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() argument 1172 return subSet(fromElement, true, toElement, false); in subSet() 1174 public SortedSet<E> headSet(E toElement) { in headSet() argument 1175 return headSet(toElement, false); in headSet()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListSet.java | 416 E toElement, in subSet() argument 420 toElement, toInclusive)); in subSet() 428 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() argument 429 return new ConcurrentSkipListSet<E>(m.headMap(toElement, inclusive)); in headSet() 447 public NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() argument 448 return subSet(fromElement, true, toElement, false); in subSet() 456 public NavigableSet<E> headSet(E toElement) { in headSet() argument 457 return headSet(toElement, false); in headSet()
|
D | ConcurrentSkipListMap.java | 2409 K toElement, in subSet() argument 2412 toElement, toInclusive)); in subSet() 2414 public NavigableSet<K> headSet(K toElement, boolean inclusive) { in headSet() argument 2415 return new KeySet<>(m.headMap(toElement, inclusive)); in headSet() 2420 public NavigableSet<K> subSet(K fromElement, K toElement) { in subSet() argument 2421 return subSet(fromElement, true, toElement, false); in subSet() 2423 public NavigableSet<K> headSet(K toElement) { in headSet() argument 2424 return headSet(toElement, false); in headSet()
|