HomeSort by relevance Sort by last modified time
    Searched refs:tailSet (Results 1 - 25 of 27) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/
SortedSet.java 118 public SortedSet<E> tailSet(E start);
NavigableSet.java 29 * and {@code tailSet} differ from the like-named {@code
46 * {@link #tailSet tailSet(E)}
257 NavigableSet<E> tailSet(E fromElement, boolean inclusive);
284 * <p>Equivalent to {@code tailSet(fromElement, true)}.
290 SortedSet<E> tailSet(E fromElement);
TreeSet.java 388 * @see java.util.NavigableSet#tailSet(Object, boolean)
392 public NavigableSet<E> tailSet(E start, boolean startInclusive) {
468 public SortedSet<E> tailSet(E start) {
469 return tailSet(start, true);
Collections.java 905 @Override public SortedSet<E> tailSet(E start) {
907 return new SynchronizedSortedSet<E>(ss.tailSet(start), mutex);
    [all...]
TreeMap.java     [all...]
  /external/guava/src/com/google/common/collect/
ForwardingSortedSet.java 60 public SortedSet<E> tailSet(E fromElement) {
61 return delegate().tailSet(fromElement);
TreeMultiset.java 172 public SortedSet<E> tailSet(E fromElement) {
AbstractMultimap.java 678 public SortedSet<V> tailSet(V fromElement) {
681 getKey(), getSortedSetDelegate().tailSet(fromElement),
935 public SortedSet<K> tailSet(K fromElement) {
    [all...]
ImmutableSortedSet.java 48 * <p>The sets returned by {@link #headSet}, {@link #tailSet}, and
627 * <p>The {@link SortedSet#tailSet} documentation states that a subset of a
633 public ImmutableSortedSet<E> tailSet(E fromElement) {
638 * These methods perform most headSet, subSet, and tailSet logic, besides
Synchronized.java 327 public SortedSet<E> tailSet(E fromElement) {
329 return sortedSet(delegate().tailSet(fromElement), mutex);
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeMapExtendTest.java     [all...]
TreeSetTest.java 288 * @tests java.util.TreeSet#tailSet(java.lang.Object)
292 // java.util.TreeSet.tailSet(java.lang.Object)
293 Set s = ts.tailSet(new Integer(900));
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 222 // java.util.TreeSet.tailSet(java.lang.Object)
223 Set s = ts.tailSet(new Integer(900));
228 SortedSet sort = ts.tailSet(new Integer(101));
231 sort.tailSet(new Integer(100));
238 ts.tailSet(this);
245 ts.tailSet(null);
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListSet.java 395 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
423 public NavigableSet<E> tailSet(E fromElement) {
424 return tailSet(fromElement, true);
ConcurrentSkipListMap.java     [all...]
  /development/tools/idegen/src/
Eclipse.java 122 SortedSet<File> nextRoots = c.sourceRoots.tailSet(sourceRoot);
146 SortedSet<File> excludedDirs = c.excludedDirs.tailSet(sourceRoot);
Configuration.java 232 SortedSet<File> tailSet = excludedDirs.tailSet(sourceRoot);
233 for (File file : tailSet) {
  /frameworks/base/services/java/com/android/server/
DropBoxManagerService.java 268 for (EntryFile entry : list.contents.tailSet(new EntryFile(millis + 1))) {
629 SortedSet<EntryFile> tail = mAllFiles.contents.tailSet(new EntryFile(t + 10000));
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/9/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 525 milliseconds

1 2