HomeSort by relevance Sort by last modified time
    Searched full:tailset (Results 1 - 17 of 17) sorted by null

  /frameworks/base/tests/CoreTests/android/core/
TreeSetTest.java 305 * Tests performance of tailSet(Integer arg0) - TreeSet
314 set = tSet.tailSet(value);
315 set = tSet.tailSet(value);
316 set = tSet.tailSet(value);
317 set = tSet.tailSet(value);
318 set = tSet.tailSet(value);
319 set = tSet.tailSet(value);
320 set = tSet.tailSet(value);
321 set = tSet.tailSet(value);
322 set = tSet.tailSet(value)
    [all...]
  /external/guava/src/com/google/common/collect/
ForwardingSortedSet.java 60 public SortedSet<E> tailSet(E fromElement) {
61 return delegate().tailSet(fromElement);
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
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...]
Synchronized.java 327 public SortedSet<E> tailSet(E fromElement) {
329 return sortedSet(delegate().tailSet(fromElement), mutex);
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
TreeSetTest.java 514 * @tests java.util.TreeSet#tailSet(java.lang.Object)
519 method = "tailSet",
524 // java.util.TreeSet.tailSet(java.lang.Object)
525 Set s = ts.tailSet(new Integer(900));
530 SortedSet sort = ts.tailSet(new Integer(101));
533 sort.tailSet(new Integer(100));
540 ts.tailSet(this);
547 ts.tailSet(null);
  /development/tools/idegen/src/
Configuration.java 232 SortedSet<File> tailSet = excludedDirs.tailSet(sourceRoot);
233 for (File file : tailSet) {
Eclipse.java 122 SortedSet<File> nextRoots = c.sourceRoots.tailSet(sourceRoot);
146 SortedSet<File> excludedDirs = c.excludedDirs.tailSet(sourceRoot);
  /external/guava/javadoc/com/google/common/collect/
ForwardingSortedSet.html 203 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ForwardingSortedSet.html#tailSet(E)">tailSet</A></B>(<A HREF="../../../../com/google/common/collect/ForwardingSortedSet.html" title="type parameter in ForwardingSortedSet">E</A>&nbsp;fromElement)</CODE>
375 <A NAME="tailSet(java.lang.Object)"><!-- --></A><A NAME="tailSet(E)"><!-- --></A><H3>
376 tailSet</H3>
378 public <A HREF="http://java.sun.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</A>&lt;<A HREF="../../../../com/google/common/collect/ForwardingSortedSet.html" title="type parameter in ForwardingSortedSet">E</A>&gt; <B>tailSet</B>(<A HREF="../../../../com/google/common/collect/ForwardingSortedSet.html" title="type parameter in ForwardingSortedSet">E</A>&nbsp;fromElement)</PRE>
381 <DT><B>Specified by:</B><DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true#tailSet(E)" title="class or interface in java.util">tailSet</A></CODE> in interface <CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</A>&lt;<A HREF="../../../../com/google/common/collect/ForwardingSortedSet.html" title="type parameter in ForwardingSortedSet">E</A>&gt;</CODE></DL>
ImmutableSortedSet.html 120 <p>The sets returned by <A HREF="../../../../com/google/common/collect/ImmutableSortedSet.html#headSet(E)"><CODE>headSet(E)</CODE></A>, <A HREF="../../../../com/google/common/collect/ImmutableSortedSet.html#tailSet(E)"><CODE>tailSet(E)</CODE></A>, and
498 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableSortedSet.html#tailSet(E)">tailSet</A></B>(<A HREF="../../../../com/google/common/collect/ImmutableSortedSet.html" title="type parameter in ImmutableSortedSet">E</A>&nbsp;fromElement)</CODE>
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
SortedSet.java 118 public SortedSet<E> tailSet(E start);
TreeSet.java 349 public SortedSet<E> tailSet(E start) {
Collections.java 960 public SortedSet<E> tailSet(E start) {
962 return new SynchronizedSortedSet<E>(ss.tailSet(start), mutex);
    [all...]
  /frameworks/base/services/java/com/android/server/
DropBoxManagerService.java 246 for (EntryFile entry : list.contents.tailSet(new EntryFile(millis + 1))) {
600 SortedSet<EntryFile> tail = mAllFiles.contents.tailSet(new EntryFile(t + 10000));
  /external/guava/javadoc/com/google/common/collect/class-use/
ImmutableSortedSet.html 365 <TD><CODE><B>ImmutableSortedSet.</B><B><A HREF="../../../../../com/google/common/collect/ImmutableSortedSet.html#tailSet(E)">tailSet</A></B>(<A HREF="../../../../../com/google/common/collect/ImmutableSortedSet.html" title="type parameter in ImmutableSortedSet">E</A>&nbsp;fromElement)</CODE>
  /prebuilt/sdk/5/
android.jar 

Completed in 353 milliseconds