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

1 2 3

  /libcore/luni/src/main/java/java/util/
SortedSet.java 66 public SortedSet<E> headSet(E end);
NavigableSet.java 27 * null}. Methods {@code subSet}, {@code headSet},
44 * {@link #headSet(Object) headSet(E)}, and
227 NavigableSet<E> headSet(E toElement, boolean inclusive);
272 * <p>Equivalent to {@code headSet(toElement, false)}.
278 SortedSet<E> headSet(E toElement);
TreeSet.java 370 * @see java.util.NavigableSet#headSet(Object, boolean)
374 public NavigableSet<E> headSet(E end, boolean endInclusive) {
445 public SortedSet<E> headSet(E end) {
446 return headSet(end, false);
  /external/guava/guava/src/com/google/common/collect/
SortedMultisets.java 67 @Override public SortedSet<E> headSet(E toElement) {
ContiguousSet.java 86 @Override public ContiguousSet<C> headSet(C toElement) {
94 @Override public ContiguousSet<C> headSet(C toElement, boolean inclusive) {
130 * These methods perform most headSet, subSet, and tailSet logic, besides parameter validation.
ForwardingSortedSet.java 76 public SortedSet<E> headSet(E toElement) {
77 return delegate().headSet(toElement);
157 * terms of {@link #headSet(Object)} and {@link #tailSet(Object)}. In some
164 return tailSet(fromElement).headSet(toElement);
Constraints.java 183 @Override public SortedSet<E> headSet(E toElement) {
184 return constrainedSortedSet(delegate.headSet(toElement), constraint);
ImmutableSortedSet.java 51 * <p>The sets returned by the {@link #headSet}, {@link #tailSet}, and
607 * <p>The {@link SortedSet#headSet} documentation states that a subset of a
614 public ImmutableSortedSet<E> headSet(E toElement) {
615 return headSet(toElement, false);
622 public ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) {
681 * These methods perform most headSet, subSet, and tailSet logic, besides
696 return Iterators.getNext(headSet(e, false).descendingIterator(), null);
704 return Iterators.getNext(headSet(e, true).descendingIterator(), null);
Synchronized.java 269 public SortedSet<E> headSet(E toElement) {
271 return sortedSet(delegate().headSet(toElement), mutex);
    [all...]
AbstractMapBasedMultimap.java 656 public SortedSet<V> headSet(V toElement) {
659 getKey(), getSortedSetDelegate().headSet(toElement),
925 public SortedSet<K> headSet(K toElement) {
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SortedMultisets.java 65 @Override public SortedSet<E> headSet(E toElement) {
ContiguousSet.java 83 @Override public ContiguousSet<C> headSet(C toElement) {
99 * These methods perform most headSet, subSet, and tailSet logic, besides parameter validation.
ImmutableSortedSet.java 312 public ImmutableSortedSet<E> headSet(E toElement) {
315 return unsafeDelegateSortedSet(sortedDelegate.headSet(toElement), true);
333 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) {
342 return headSet(toElement);
362 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
Synchronized.java 256 public SortedSet<E> headSet(E toElement) {
258 return sortedSet(delegate().headSet(toElement), mutex);
AbstractMapBasedMultimap.java 655 public SortedSet<V> headSet(V toElement) {
658 getKey(), getSortedSetDelegate().headSet(toElement),
924 public SortedSet<K> headSet(K toElement) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 136 // java.util.TreeSet.headSet(java.lang.Object)
137 Set s = ts.headSet(new Integer(100));
142 SortedSet sort = ts.headSet(new Integer(100));
144 sort.headSet(new Integer(101));
151 ts.headSet(this);
158 ts.headSet(null);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeSet.java 97 @Override public SortedSet<E> headSet(E toElement) {
98 return new SafeTreeSet<E>(delegate.headSet(checkValid(toElement)));
  /external/smali/util/src/main/java/org/jf/util/
ArraySortedSet.java 141 public SortedSet<T> headSet(T toElement) {
  /external/guava/guava-tests/test/com/google/common/collect/
FilteredCollectionsTest.java 249 filter((C) createUnfiltered(contents).headSet(i), EVEN),
250 filter(createUnfiltered(contents), EVEN).headSet(i));
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListSet.java 388 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
416 public NavigableSet<E> headSet(E toElement) {
417 return headSet(toElement, false);
ConcurrentSkipListMap.java     [all...]
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 
  /frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar 
  /prebuilts/devtools/tools/lib/
guava-17.0.jar 
  /prebuilts/misc/common/guava/
guava-15.0.jar 

Completed in 1062 milliseconds

1 2 3