Searched refs:tailSet (Results 1 - 7 of 7) sorted by relevance

/external/guava/src/com/google/common/collect/
H A DForwardingSortedSet.java60 public SortedSet<E> tailSet(E fromElement) { method in class:ForwardingSortedSet
61 return delegate().tailSet(fromElement);
H A DTreeMultiset.java172 public SortedSet<E> tailSet(E fromElement) { method in class:TreeMultiset.SortedMapBasedElementSet
H A DAbstractMultimap.java678 public SortedSet<V> tailSet(V fromElement) { method in class:AbstractMultimap.WrappedSortedSet
681 getKey(), getSortedSetDelegate().tailSet(fromElement),
935 public SortedSet<K> tailSet(K fromElement) { method in class:AbstractMultimap.SortedKeySet
H A DImmutableSortedSet.java48 * <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) { method in class:ImmutableSortedSet
638 * These methods perform most headSet, subSet, and tailSet logic, besides
H A DSynchronized.java327 public SortedSet<E> tailSet(E fromElement) { method in class:Synchronized.SynchronizedSortedSet
329 return sortedSet(delegate().tailSet(fromElement), mutex);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DTreeMapExtendTest.java4139 Set entrySet, tailSet;
4152 tailSet = descendingSubMapEntrySet.tailSet(entry);
4153 tailSetIterator = tailSet.iterator();
4166 tailSet = descendingSubMapEntrySet.tailSet(entry, false);
4167 tailSetIterator = tailSet.iterator();
4180 tailSet = descendingSubMapEntrySet.tailSet(entry, true);
4181 tailSetIterator = tailSet
[all...]
H A DTreeSetTest.java288 * @tests java.util.TreeSet#tailSet(java.lang.Object)
292 // java.util.TreeSet.tailSet(java.lang.Object)
293 Set s = ts.tailSet(new Integer(900));

Completed in 99 milliseconds