Searched defs:toElement (Results 1 - 5 of 5) 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.java3336 @Override public SortedSet<E> subSet(E fromElement, E toElement) { argument
3337 return new CheckedSortedSet<E>(ss.subSet(fromElement, toElement),
3341 @Override public SortedSet<E> headSet(E toElement) { argument
3342 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.java2327 E toElement,
2330 toElement, toInclusive));
2332 public NavigableSet<E> headSet(E toElement, boolean inclusive) { argument
2333 return new KeySet<E>(m.headMap(toElement, inclusive));
2338 public NavigableSet<E> subSet(E fromElement, E toElement) { argument
2339 return subSet(fromElement, true, toElement, false);
2341 public NavigableSet<E> headSet(E toElement) { argument
2342 return headSet(toElement, false);
2325 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 55 milliseconds