Searched refs:toElement (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DNavigableSet.java164 * {@code fromElement} to {@code toElement}. If {@code fromElement} and
165 * {@code toElement} are equal, the returned set is empty unless {@code
177 * @param toElement high endpoint of the returned set
181 * {@code fromElement}, inclusive, to {@code toElement}, exclusive
183 * {@code toElement} cannot be compared to one another using this
187 * {@code toElement} cannot be compared to elements currently in
190 * {@code toElement} is null and this set does
193 * greater than {@code toElement}; or if this set itself
195 * {@code toElement} lies outside the bounds of the range.
198 E toElement, boolea
197 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
227 headSet(E toElement, boolean inclusive) argument
267 subSet(E fromElement, E toElement) argument
278 headSet(E toElement) argument
[all...]
H A DCollections.java3343 @Override public SortedSet<E> subSet(E fromElement, E toElement) { argument
3344 return new CheckedSortedSet<E>(ss.subSet(fromElement, toElement),
3348 @Override public SortedSet<E> headSet(E toElement) { argument
3349 return new CheckedSortedSet<E>(ss.headSet(toElement), type);
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListSet.java370 * {@code toElement} is null
375 E toElement,
379 toElement, toInclusive));
384 * @throws NullPointerException if {@code toElement} is null
387 public NavigableSet<E> headSet(E toElement, boolean inclusive) { argument
388 return new ConcurrentSkipListSet<E>(m.headMap(toElement, inclusive));
403 * {@code toElement} is null
406 public NavigableSet<E> subSet(E fromElement, E toElement) { argument
407 return subSet(fromElement, true, toElement, false);
412 * @throws NullPointerException if {@code toElement} i
373 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
415 headSet(E toElement) argument
[all...]
H A DConcurrentSkipListMap.java2328 E toElement,
2331 toElement, toInclusive));
2333 public NavigableSet<E> headSet(E toElement, boolean inclusive) { argument
2334 return new KeySet<E>(m.headMap(toElement, inclusive));
2339 public NavigableSet<E> subSet(E fromElement, E toElement) { argument
2340 return subSet(fromElement, true, toElement, false);
2342 public NavigableSet<E> headSet(E toElement) { argument
2343 return headSet(toElement, false);
2326 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument

Completed in 381 milliseconds