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

1 2 3 4 5 6 7 8 9

  /libcore/ojluni/src/main/java/java/util/
SortedSet.java 205 SortedSet<E> tailSet(E fromElement);
NavigableSet.java 61 * {@link #tailSet(Object, boolean) tailSet(E, boolean)}
78 * {@link #tailSet(Object) tailSet(E)}
289 NavigableSet<E> tailSet(E fromElement, boolean inclusive);
316 * <p>Equivalent to {@code tailSet(fromElement, true)}.
322 SortedSet<E> tailSet(E fromElement);
TreeSet.java 349 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
382 public SortedSet<E> tailSet(E fromElement) {
383 return tailSet(fromElement, true);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SortedMultisets.java 69 @Override public SortedSet<E> tailSet(E fromElement) {
ContiguousSet.java 94 @Override public ContiguousSet<C> tailSet(C fromElement) {
99 * These methods perform most headSet, subSet, and tailSet logic, besides parameter validation.
ImmutableSortedSet.java 323 Iterator<E> iterator = tailSet(e).iterator();
362 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
365 public ImmutableSortedSet<E> tailSet(E fromElement) {
368 return unsafeDelegateSortedSet(sortedDelegate.tailSet(fromElement), true);
374 ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) {
383 return tailSet(fromElement);
Synchronized.java 263 public SortedSet<E> tailSet(E fromElement) {
265 return sortedSet(delegate().tailSet(fromElement), mutex);
AbstractMapBasedMultimap.java 671 public SortedSet<V> tailSet(V fromElement) {
674 getKey(), getSortedSetDelegate().tailSet(fromElement),
939 public SortedSet<K> tailSet(K fromElement) {
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ContiguousSet.java 117 @Override public ContiguousSet<C> tailSet(C fromElement) {
125 @Override public ContiguousSet<C> tailSet(C fromElement, boolean inclusive) {
130 * These methods perform most headSet, subSet, and tailSet logic, besides parameter validation.
ForwardingSortedSet.java 91 public SortedSet<E> tailSet(E fromElement) {
92 return delegate().tailSet(fromElement);
106 * method of {@link #tailSet}. If you override {@link #tailSet}, you may wish
116 Object ceiling = self.tailSet(object).first();
129 * method of {@link #tailSet}. If you override {@link #tailSet}, you may wish
139 Iterator<Object> iterator = self.tailSet(object).iterator();
157 * terms of {@link #headSet(Object)} and {@link #tailSet(Object)}. In some
164 return tailSet(fromElement).headSet(toElement)
    [all...]
SortedMultisets.java 72 @Override public SortedSet<E> tailSet(E fromElement) {
149 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
Constraints.java 154 @Override public SortedSet<E> tailSet(E fromElement) {
155 return constrainedSortedSet(delegate.tailSet(fromElement), constraint);
ForwardingNavigableSet.java 91 * {@link #tailSet(Object, boolean)}. If you override {@link #tailSet(Object, boolean)}, you may
95 return Iterators.getNext(tailSet(e, true).iterator(), null);
105 * {@link #tailSet(Object, boolean)}. If you override {@link #tailSet(Object, boolean)}, you may
109 return Iterators.getNext(tailSet(e, false).iterator(), null);
186 * {@code headSet} and {@code tailSet} methods. In many cases, you may wish to override
195 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
225 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
226 return delegate().tailSet(fromElement, inclusive)
    [all...]
ImmutableSortedSet.java 52 * <p>The sets returned by the {@link #headSet}, {@link #tailSet}, and
664 * <p>The {@link SortedSet#tailSet} documentation states that a subset of a
671 public ImmutableSortedSet<E> tailSet(E fromElement) {
672 return tailSet(fromElement, true);
680 public ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) {
685 * These methods perform most headSet, subSet, and tailSet logic, besides
719 return Iterables.getFirst(tailSet(e, true), null);
728 return Iterables.getFirst(tailSet(e, false), null);
Synchronized.java 279 public SortedSet<E> tailSet(E fromElement) {
281 return sortedSet(delegate().tailSet(fromElement), mutex);
    [all...]
AbstractMapBasedMultimap.java 674 public SortedSet<V> tailSet(V fromElement) {
677 getKey(), getSortedSetDelegate().tailSet(fromElement),
752 public NavigableSet<V> tailSet(V fromElement, boolean inclusive) {
753 return wrap(getSortedSetDelegate().tailSet(fromElement, inclusive));
1017 public SortedSet<K> tailSet(K fromElement) {
1096 public NavigableSet<K> tailSet(K fromElement) {
1097 return tailSet(fromElement, true);
1101 public NavigableSet<K> tailSet(K fromElement, boolean inclusive) {
    [all...]
  /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);
  /development/tools/idegen/src/
Configuration.java 231 SortedSet<File> tailSet = excludedDirs.tailSet(sourceRoot);
232 for (File file : tailSet) {
  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedNavigableSetTest.java 124 @Override public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
126 return delegate().tailSet(fromElement, inclusive);
129 @Override public SortedSet<E> tailSet(E fromElement) {
130 return tailSet(fromElement, true);
214 SortedSet<String> tailSet = map.tailSet("a");
215 assertTrue(tailSet instanceof SynchronizedSortedSet);
216 assertSame(MUTEX, ((SynchronizedSortedSet<String>) tailSet).mutex);
221 NavigableSet<String> tailSet = map.tailSet("a", true)
    [all...]
ImmutableRangeSetTest.java 428 assertEquals(asSet.tailSet(i, false), expectedSet.tailSet(i, false));
429 assertEquals(asSet.tailSet(i, true), expectedSet.tailSet(i, true));
ForwardingNavigableSetTest.java 142 public SortedSet<T> tailSet(T fromElement) {
249 forward().tailSet("key", false);
250 assertEquals("[tailSet(Object,boolean)]", getCalls());
FilteredCollectionsTest.java 261 filter((C) createUnfiltered(contents).tailSet(i), EVEN),
262 filter(createUnfiltered(contents), EVEN).tailSet(i));
301 filter(createUnfiltered(contents).tailSet(i, inclusive), EVEN),
302 filter(createUnfiltered(contents), EVEN).tailSet(i, inclusive));
  /external/smali/util/src/main/java/org/jf/util/
ArraySortedSet.java 146 public SortedSet<T> tailSet(T fromElement) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeSet.java 182 @Override public SortedSet<E> tailSet(E fromElement) {
183 return tailSet(fromElement, true);
186 @Override public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
187 return new SafeTreeSet<E>(delegate.tailSet(checkValid(fromElement), inclusive));
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentSkipListSet.java 437 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
465 public NavigableSet<E> tailSet(E fromElement) {
466 return tailSet(fromElement, true);

Completed in 527 milliseconds

1 2 3 4 5 6 7 8 9