Searched defs:tailSet (Results 1 - 25 of 39) sorted by relevance

12

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSortedMultisets.java69 @Override public SortedSet<E> tailSet(E fromElement) { method in class:SortedMultisets.ElementSet
H A DContiguousSet.java94 @Override public ContiguousSet<C> tailSet(C fromElement) { method in class:ContiguousSet
99 * These methods perform most headSet, subSet, and tailSet logic, besides parameter validation.
H A DImmutableSortedSet.java323 Iterator<E> iterator = tailSet(e).iterator();
362 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
365 public ImmutableSortedSet<E> tailSet(E fromElement) { method in class:ImmutableSortedSet
368 return unsafeDelegateSortedSet(sortedDelegate.tailSet(fromElement), true);
374 ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) { method in class:ImmutableSortedSet
383 return tailSet(fromElement);
H A DSets.java817 public SortedSet<E> tailSet(E fromElement) { method in class:Sets.FilteredSortedSet
818 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).tailSet(fromElement), predicate);
H A DAbstractMapBasedMultimap.java671 public SortedSet<V> tailSet(V fromElement) { method in class:AbstractMapBasedMultimap.WrappedSortedSet
674 getKey(), getSortedSetDelegate().tailSet(fromElement),
939 public SortedSet<K> tailSet(K fromElement) { method in class:AbstractMapBasedMultimap.SortedKeySet
H A DSynchronized.java263 public SortedSet<E> tailSet(E fromElement) { method in class:Synchronized.SynchronizedSortedSet
265 return sortedSet(delegate().tailSet(fromElement), mutex);
H A DMaps.java837 return asMap(backingSet().tailSet(fromKey), function);
898 public SortedSet<E> tailSet(E fromElement) {
899 return removeOnlySortedSet(super.tailSet(fromElement));
2286 public SortedSet<K> tailSet(K fromElement) { method in class:Maps.FilteredEntrySortedMap.SortedKeySet
2658 public SortedSet<K> tailSet(K fromElement) { method in class:Maps.SortedKeySet
/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java117 @Override public ContiguousSet<C> tailSet(C fromElement) { method in class:ContiguousSet
125 @Override public ContiguousSet<C> tailSet(C fromElement, boolean inclusive) { method in class:ContiguousSet
130 * These methods perform most headSet, subSet, and tailSet logic, besides parameter validation.
H A DForwardingSortedSet.java91 public SortedSet<E> tailSet(E fromElement) { method in class:ForwardingSortedSet
92 return delegate().tailSet(fromElement);
106 * method of {@link #tailSet}. If you override {@link #tailSet}, you may wish
116 Object ceiling = self.tailSet(object).first();
129 * method of {@link #tailSet}. If you override {@link #tailSet}, you may wish
139 Iterator<Object> iterator = self.tailSet(object).iterator();
157 * terms of {@link #headSet(Object)} and {@link #tailSet(Object)}. In some
164 return tailSet(fromElemen
[all...]
H A DConstraints.java154 @Override public SortedSet<E> tailSet(E fromElement) { method in class:Constraints.ConstrainedSortedSet
155 return constrainedSortedSet(delegate.tailSet(fromElement), constraint);
H A DForwardingNavigableSet.java91 * {@link #tailSet(Object, boolean)}. If you override {@link #tailSet(Object, boolean)}, you may
95 return Iterators.getNext(tailSet(e, true).iterator(), null);
105 * {@link #tailSet(Object, boolean)}. If you override {@link #tailSet(Object, boolean)}, you may
109 return Iterators.getNext(tailSet(e, false).iterator(), null);
186 * {@code headSet} and {@code tailSet} methods. In many cases, you may wish to override
195 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
225 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:ForwardingNavigableSet
226 return delegate().tailSet(fromElemen
[all...]
H A DSortedMultisets.java72 @Override public SortedSet<E> tailSet(E fromElement) { method in class:SortedMultisets.ElementSet
149 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:SortedMultisets.NavigableElementSet
H A DImmutableSortedSet.java52 * <p>The sets returned by the {@link #headSet}, {@link #tailSet}, and
664 * <p>The {@link SortedSet#tailSet} documentation states that a subset of a
671 public ImmutableSortedSet<E> tailSet(E fromElement) { method in class:ImmutableSortedSet
672 return tailSet(fromElement, true);
680 public ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) { method in class:ImmutableSortedSet
685 * These methods perform most headSet, subSet, and tailSet logic, besides
719 return Iterables.getFirst(tailSet(e, true), null);
728 return Iterables.getFirst(tailSet(e, false), null);
H A DSets.java853 public SortedSet<E> tailSet(E fromElement) { method in class:Sets.FilteredSortedSet
854 return new FilteredSortedSet<E>(((SortedSet<E>) unfiltered).tailSet(fromElement), predicate);
947 return Iterables.getFirst(tailSet(e, true), null);
952 return Iterables.getFirst(tailSet(e, false), null);
993 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:Sets.FilteredNavigableSet
994 return filter(unfiltered().tailSet(fromElement, inclusive), predicate);
1478 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:Sets.UnmodifiableNavigableSet
1480 delegate.tailSet(fromElement, inclusive));
1494 * {@code subSet}, {@code headSet}, or {@code tailSet} views. <pre> {@code
1629 return forward.tailSet(toElemen
1633 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:Sets.DescendingSet
1674 public SortedSet<E> tailSet(E fromElement) { method in class:Sets.DescendingSet
[all...]
H A DAbstractMapBasedMultimap.java674 public SortedSet<V> tailSet(V fromElement) { method in class:AbstractMapBasedMultimap.WrappedSortedSet
677 getKey(), getSortedSetDelegate().tailSet(fromElement),
752 public NavigableSet<V> tailSet(V fromElement, boolean inclusive) { method in class:AbstractMapBasedMultimap.WrappedNavigableSet
753 return wrap(getSortedSetDelegate().tailSet(fromElement, inclusive));
1017 public SortedSet<K> tailSet(K fromElement) { method in class:AbstractMapBasedMultimap.SortedKeySet
1096 public NavigableSet<K> tailSet(K fromElement) { method in class:AbstractMapBasedMultimap.NavigableKeySet
1097 return tailSet(fromElement, true);
1101 public NavigableSet<K> tailSet(K fromElement, boolean inclusive) { method in class:AbstractMapBasedMultimap.NavigableKeySet
H A DMaps.java875 return asMap(backingSet().tailSet(fromKey), function);
918 return asMap(set.tailSet(fromKey, inclusive), function);
1016 public SortedSet<E> tailSet(E fromElement) {
1017 return removeOnlySortedSet(super.tailSet(fromElement));
1052 public SortedSet<E> tailSet(E fromElement) {
1053 return removeOnlySortedSet(super.tailSet(fromElement));
1062 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
1063 return removeOnlyNavigableSet(super.tailSet(fromElement, inclusive));
2819 public SortedSet<K> tailSet(K fromElement) { method in class:Maps.FilteredEntrySortedMap.SortedKeySet
3557 public SortedSet<K> tailSet( method in class:Maps.SortedKeySet
3638 public NavigableSet<K> tailSet(K fromElement, boolean inclusive) { method in class:Maps.NavigableKeySet
3653 public SortedSet<K> tailSet(K fromElement) { method in class:Maps.NavigableKeySet
[all...]
H A DSynchronized.java279 public SortedSet<E> tailSet(E fromElement) { method in class:Synchronized.SynchronizedSortedSet
281 return sortedSet(delegate().tailSet(fromElement), mutex);
1305 @Override public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:Synchronized.SynchronizedNavigableSet
1308 delegate().tailSet(fromElement, inclusive), mutex);
1320 @Override public SortedSet<E> tailSet(E fromElement) { method in class:Synchronized.SynchronizedNavigableSet
1321 return tailSet(fromElement, true);
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedNavigableSetTest.java124 @Override public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:SynchronizedNavigableSetTest.TestSet
126 return delegate().tailSet(fromElement, inclusive);
129 @Override public SortedSet<E> tailSet(E fromElement) { method in class:SynchronizedNavigableSetTest.TestSet
130 return tailSet(fromElement, true);
214 SortedSet<String> tailSet = map.tailSet("a");
215 assertTrue(tailSet instanceof SynchronizedSortedSet);
216 assertSame(MUTEX, ((SynchronizedSortedSet<String>) tailSet).mutex);
221 NavigableSet<String> tailSet = map.tailSet("
[all...]
H A DForwardingNavigableSetTest.java142 public SortedSet<T> tailSet(T fromElement) { method in class:ForwardingNavigableSetTest.StandardImplForwardingNavigableSet
249 forward().tailSet("key", false);
250 assertEquals("[tailSet(Object,boolean)]", getCalls());
/external/smali/util/src/main/java/org/jf/util/
H A DArraySortedSet.java146 public SortedSet<T> tailSet(T fromElement) { method in class:ArraySortedSet
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeSet.java182 @Override public SortedSet<E> tailSet(E fromElement) { method in class:SafeTreeSet
183 return tailSet(fromElement, true);
186 @Override public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { method in class:SafeTreeSet
187 return new SafeTreeSet<E>(delegate.tailSet(checkValid(fromElement), inclusive));
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/dagger2/lib/
H A Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 478 milliseconds

12