Searched defs:headSet (Results 1 - 13 of 13) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java42 @Override public ContiguousSet<C> headSet(C toElement) { method in class:ContiguousSet
43 return headSet(checkNotNull(toElement), false);
46 @Override ContiguousSet<C> headSet(C toElement, boolean inclusive) { method in class:ContiguousSet
74 * These methods perform most headSet, subSet, and tailSet logic, besides parameter validation.
H A DForwardingSortedSet.java76 public SortedSet<E> headSet(E toElement) { method in class:ForwardingSortedSet
77 return delegate().headSet(toElement);
157 * terms of {@link #headSet(Object)} and {@link #tailSet(Object)}. In some
164 return tailSet(fromElement).headSet(toElement);
H A DSortedMultisets.java55 @Override public SortedSet<E> headSet(E toElement) { method in class:SortedMultisets.ElementSet
H A DStandardRowSortedTable.java96 public SortedSet<R> headSet(R toElement) { method in class:StandardRowSortedTable.RowKeySortedSet
H A DConstraints.java175 @Override public SortedSet<E> headSet(E toElement) { method in class:Constraints.ConstrainedSortedSet
176 return constrainedSortedSet(delegate.headSet(toElement), constraint);
H A DImmutableSortedSet.java51 * <p>The sets returned by the {@link #headSet}, {@link #tailSet}, and
590 * <p>The {@link SortedSet#headSet} documentation states that a subset of a
597 public ImmutableSortedSet<E> headSet(E toElement) { method in class:ImmutableSortedSet
598 return headSet(toElement, false);
601 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) { method in class:ImmutableSortedSet
652 * These methods perform most headSet, subSet, and tailSet logic, besides
H A DSets.java856 public SortedSet<E> headSet(E toElement) { method in class:Sets.FilteredSortedSet
857 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).headSet(toElement), predicate);
878 sortedUnfiltered = sortedUnfiltered.headSet(element);
H A DAbstractMultimap.java684 public SortedSet<V> headSet(V toElement) { method in class:AbstractMultimap.WrappedSortedSet
687 getKey(), getSortedSetDelegate().headSet(toElement),
970 public SortedSet<K> headSet(K toElement) { method in class:AbstractMultimap.SortedKeySet
H A DSynchronized.java267 public SortedSet<E> headSet(E toElement) { method in class:Synchronized.SynchronizedSortedSet
269 return sortedSet(delegate().headSet(toElement), mutex);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedSet.java296 public ImmutableSortedSet<E> headSet(E toElement) { method in class:ImmutableSortedSet
299 return unsafeDelegateSortedSet(sortedDelegate.headSet(toElement), true);
317 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) { method in class:ImmutableSortedSet
326 return headSet(toElement);
346 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
H A DSets.java844 public SortedSet<E> headSet(E toElement) { method in class:Sets.FilteredSortedSet
845 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).headSet(toElement), predicate);
866 sortedUnfiltered = sortedUnfiltered.headSet(element);
H A DSynchronized.java254 public SortedSet<E> headSet(E toElement) { method in class:Synchronized.SynchronizedSortedSet
256 return sortedSet(delegate().headSet(toElement), mutex);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeSet.java118 @Override public SortedSet<E> headSet(E toElement) { method in class:SafeTreeSet
119 return headSet(toElement, false);
122 @Override public NavigableSet<E> headSet(E toElement, boolean inclusive) { method in class:SafeTreeSet
124 delegate.headSet(checkValid(toElement), inclusive));

Completed in 180 milliseconds