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

1 2

  /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...]
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 297 * @tests java.util.TreeSet#tailSet(java.lang.Object)
302 method = "tailSet",
307 // java.util.TreeSet.tailSet(java.lang.Object)
308 Set s = ts.tailSet(new Integer(900));
313 SortedSet sort = ts.tailSet(new Integer(101));
316 sort.tailSet(new Integer(100));
323 ts.tailSet(this);
330 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);
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ConcurrentSkipListSubSetTest.java 82 return set.tailSet(m1, true);
584 * tailSet returns set with keys in requested range
588 SortedSet sm = set.tailSet(two);
606 SortedSet ssm = sm.tailSet(four);
1086 * tailSet returns set with keys in requested range
1090 SortedSet sm = set.tailSet(m2);
1108 SortedSet ssm = sm.tailSet(m4);
ConcurrentSkipListSetTest.java 621 * tailSet returns set with keys in requested range
625 SortedSet sm = set.tailSet(two);
643 SortedSet ssm = sm.tailSet(four);
788 // tailSet - pick direction and endpoint inclusion randomly
790 NavigableSet<Integer> tm = set.tailSet(midPoint,incl);
  /libcore/luni/src/main/java/java/util/
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);
NavigableSet.java 191 NavigableSet<E> tailSet(E start, boolean startInclusive);
SortedSet.java 118 public SortedSet<E> tailSet(E start);
TreeMap.java     [all...]
Collections.java 953 public SortedSet<E> tailSet(E start) {
955 return new SynchronizedSortedSet<E>(ss.tailSet(start), mutex);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListSet.java 406 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
434 public NavigableSet<E> tailSet(E fromElement) {
435 return tailSet(fromElement, true);
ConcurrentSkipListMap.java     [all...]
  /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...]
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
java.util.TreeSet.html 158 <nobr><code>NavigableSet&lt;E&gt;</code>&nbsp;<A HREF="../../../../reference/java/util/TreeSet.html#tailSet(E, boolean)" target="_top"><code>tailSet</code></A>(<code>E,</nobr> boolean<nobr><nobr></code>)</nobr>
alldiffs_index_additions.html     [all...]
alldiffs_index_all.html     [all...]
  /frameworks/base/services/java/com/android/server/
DropBoxManagerService.java 253 for (EntryFile entry : list.contents.tailSet(new EntryFile(millis + 1))) {
607 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>

Completed in 556 milliseconds

1 2