Searched defs:fromElement (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
174 * @param fromElement low endpoint of the returned set
181 * {@code fromElement}, inclusive, to {@code toElement}, exclusive
182 * @throws ClassCastException if {@code fromElement} and
186 * to, throw this exception if {@code fromElement} or
189 * @throws NullPointerException if {@code fromElement} or
192 * @throws IllegalArgumentException if {@code fromElement} is
194 * has a restricted range, and {@code fromElement} or
197 NavigableSet<E> subSet(E fromElement, boolea argument
256 tailSet(E fromElement, boolean inclusive) argument
267 subSet(E fromElement, E toElement) argument
289 tailSet(E fromElement) 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),
3345 @Override public SortedSet<E> tailSet(E fromElement) { argument
3346 return new CheckedSortedSet<E>(ss.tailSet(fromElement), type);
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListSet.java369 * @throws NullPointerException if {@code fromElement} or
373 public NavigableSet<E> subSet(E fromElement, argument
378 (m.subMap(fromElement, fromInclusive,
393 * @throws NullPointerException if {@code fromElement} is null
396 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { argument
397 return new ConcurrentSkipListSet<E>(m.tailMap(fromElement, inclusive));
402 * @throws NullPointerException if {@code fromElement} or
406 public NavigableSet<E> subSet(E fromElement, E toElement) { argument
407 return subSet(fromElement, true, toElement, false);
421 * @throws NullPointerException if {@code fromElement} i
424 tailSet(E fromElement) argument
[all...]
H A DConcurrentSkipListMap.java2325 public NavigableSet<E> subSet(E fromElement, argument
2329 return new KeySet<E>(m.subMap(fromElement, fromInclusive,
2335 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { argument
2336 return new KeySet<E>(m.tailMap(fromElement, inclusive));
2338 public NavigableSet<E> subSet(E fromElement, E toElement) { argument
2339 return subSet(fromElement, true, toElement, false);
2344 public NavigableSet<E> tailSet(E fromElement) { argument
2345 return tailSet(fromElement, true);
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 37 milliseconds