Searched defs:subSet (Results 1 - 18 of 18) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java50 @Override public ContiguousSet<C> subSet(C fromElement, C toElement) { method in class:ContiguousSet
54 return subSet(fromElement, true, toElement, false);
57 @Override ContiguousSet<C> subSet(C fromElement, boolean fromInclusive, C toElement, method in class:ContiguousSet
74 * These methods perform most headSet, subSet, and tailSet logic, besides parameter validation.
H A DForwardingSortedSet.java86 public SortedSet<E> subSet(E fromElement, E toElement) { method in class:ForwardingSortedSet
87 return delegate().subSet(fromElement, toElement);
156 * A sensible default implementation of {@link #subSet(Object, Object)} in
158 * situations, you may wish to override {@link #subSet(Object, Object)} to
H A DSortedMultisets.java50 @Override public SortedSet<E> subSet(E fromElement, E toElement) { method in class:SortedMultisets.ElementSet
H A DStandardRowSortedTable.java103 public SortedSet<R> subSet(R fromElement, R toElement) { method in class:StandardRowSortedTable.RowKeySortedSet
H A DConstraints.java178 @Override public SortedSet<E> subSet(E fromElement, E toElement) { method in class:Constraints.ConstrainedSortedSet
180 delegate.subSet(fromElement, toElement), constraint);
H A DImmutableSortedSet.java52 * {@link #subSet} methods share the same array as the original set, preventing
610 * <p>The {@link SortedSet#subSet} documentation states that a subset of a
619 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) { method in class:ImmutableSortedSet
620 return subSet(fromElement, true, toElement, false);
623 ImmutableSortedSet<E> subSet( method in class:ImmutableSortedSet
652 * These methods perform most headSet, subSet, and tailSet logic, besides
H A DSets.java850 public SortedSet<E> subSet(E fromElement, E toElement) { method in class:Sets.FilteredSortedSet
851 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).subSet(fromElement, toElement),
H A DAbstractMultimap.java692 public SortedSet<V> subSet(V fromElement, V toElement) { method in class:AbstractMultimap.WrappedSortedSet
695 getKey(), getSortedSetDelegate().subSet(fromElement, toElement),
980 public SortedSet<K> subSet(K fromElement, K toElement) { method in class:AbstractMultimap.SortedKeySet
H A DSynchronized.java260 public SortedSet<E> subSet(E fromElement, E toElement) { method in class:Synchronized.SynchronizedSortedSet
262 return sortedSet(delegate().subSet(fromElement, toElement), mutex);
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingSortedSetTest.java100 @Override public SortedSet<T> subSet(T fromElement, T toElement) { method in class:ForwardingSortedSetTest.StandardImplForwardingSortedSet
165 forward().subSet("first", "last");
166 assertEquals("[subSet(Object,Object)]", getCalls());
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedSet.java333 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) { method in class:ImmutableSortedSet
334 return subSet(fromElement, true, toElement, false);
337 ImmutableSortedSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, method in class:ImmutableSortedSet
H A DSets.java838 public SortedSet<E> subSet(E fromElement, E toElement) { method in class:Sets.FilteredSortedSet
839 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).subSet(fromElement, toElement),
H A DSynchronized.java247 public SortedSet<E> subSet(E fromElement, E toElement) { method in class:Synchronized.SynchronizedSortedSet
249 return sortedSet(delegate().subSet(fromElement, toElement), mutex);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeSet.java171 @Override public NavigableSet<E> subSet( method in class:SafeTreeSet
174 delegate.subSet(checkValid(fromElement), fromInclusive,
178 @Override public SortedSet<E> subSet(E fromElement, E toElement) { method in class:SafeTreeSet
179 return subSet(fromElement, true, toElement, false);
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1015 milliseconds