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

1 2

  /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/
ContiguousSet.java 42 @Override public ContiguousSet<C> headSet(C toElement) {
43 return headSet(checkNotNull(toElement), false);
46 @Override ContiguousSet<C> headSet(C toElement, boolean inclusive) {
74 * 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);
StandardRowSortedTable.java 96 public SortedSet<R> headSet(R toElement) {
Constraints.java 175 @Override public SortedSet<E> headSet(E toElement) {
176 return constrainedSortedSet(delegate.headSet(toElement), constraint);
SortedMultisets.java 55 @Override public SortedSet<E> headSet(E toElement) {
ImmutableSortedSet.java 51 * <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) {
598 return headSet(toElement, false);
601 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) {
652 * These methods perform most headSet, subSet, and tailSet logic, besides
Synchronized.java 267 public SortedSet<E> headSet(E toElement) {
269 return sortedSet(delegate().headSet(toElement), mutex);
AbstractMultimap.java 684 public SortedSet<V> headSet(V toElement) {
687 getKey(), getSortedSetDelegate().headSet(toElement),
970 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-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedSet.java 296 public ImmutableSortedSet<E> headSet(E toElement) {
299 return unsafeDelegateSortedSet(sortedDelegate.headSet(toElement), true);
317 ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) {
326 return headSet(toElement);
346 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
Synchronized.java 254 public SortedSet<E> headSet(E toElement) {
256 return sortedSet(delegate().headSet(toElement), mutex);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeSet.java 118 @Override public SortedSet<E> headSet(E toElement) {
119 return headSet(toElement, false);
122 @Override public NavigableSet<E> headSet(E toElement, boolean inclusive) {
124 delegate.headSet(checkValid(toElement), inclusive));
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListSet.java 387 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
415 public NavigableSet<E> headSet(E toElement) {
416 return headSet(toElement, false);
ConcurrentSkipListMap.java     [all...]
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 

Completed in 430 milliseconds

1 2