Home
last modified time | relevance | path

Searched defs:fromElement (Results 1 – 25 of 587) sorted by relevance

12345678910>>...24

/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/
H A DContiguousSet.java166 public ContiguousSet<C> subSet(C fromElement, C toElement) { in subSet()
177 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSet()
185 public ContiguousSet<C> tailSet(C fromElement) { in tailSet()
192 public ContiguousSet<C> tailSet(C fromElement, boolean inclusive) { in tailSet()
204 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive); in subSetImpl()
207 abstract ContiguousSet<C> tailSetImpl(C fromElement, boolean inclusive); in tailSetImpl()
H A DForwardingNavigableSet.java196 public NavigableSet<E> subSet( in subSet()
209 protected NavigableSet<E> standardSubSet( in standardSubSet()
224 protected SortedSet<E> standardSubSet( in standardSubSet()
244 public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) { in tailSet()
253 protected SortedSet<E> standardTailSet(@ParametricNullness E fromElement) { in standardTailSet()
H A DAbstractMapBasedMultimap.java660 public SortedSet<V> subSet(@ParametricNullness V fromElement, @ParametricNullness V toElement) { in subSet()
669 public SortedSet<V> tailSet(@ParametricNullness V fromElement) { in tailSet()
743 public NavigableSet<V> subSet( in subSet()
758 public NavigableSet<V> tailSet(@ParametricNullness V fromElement, boolean inclusive) { in tailSet()
1042 public SortedSet<K> subSet(@ParametricNullness K fromElement, @ParametricNullness K toElement) { in subSet()
1047 public SortedSet<K> tailSet(@ParametricNullness K fromElement) { in tailSet()
1120 public NavigableSet<K> subSet( in subSet()
1126 public NavigableSet<K> subSet( in subSet()
1136 public NavigableSet<K> tailSet(@ParametricNullness K fromElement) { in tailSet()
1141 public NavigableSet<K> tailSet(@ParametricNullness K fromElement, boolean inclusive) { in tailSet()
H A DSortedMultisets.java70 public SortedSet<E> subSet(@ParametricNullness E fromElement, @ParametricNullness E toElement) { in subSet()
80 public SortedSet<E> tailSet(@ParametricNullness E fromElement) { in tailSet()
152 public NavigableSet<E> subSet( in subSet()
171 public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) { in tailSet()
H A DImmutableSortedSet.java608 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) { in subSet()
616 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet()
634 public ImmutableSortedSet<E> tailSet(E fromElement) { in tailSet()
640 public ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
651 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive); in subSetImpl()
653 abstract ImmutableSortedSet<E> tailSetImpl(E fromElement, boolean inclusive); in tailSetImpl()
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java166 public ContiguousSet<C> subSet(C fromElement, C toElement) { in subSet()
177 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSet()
185 public ContiguousSet<C> tailSet(C fromElement) { in tailSet()
192 public ContiguousSet<C> tailSet(C fromElement, boolean inclusive) { in tailSet()
204 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive); in subSetImpl()
207 abstract ContiguousSet<C> tailSetImpl(C fromElement, boolean inclusive); in tailSetImpl()
H A DForwardingNavigableSet.java196 public NavigableSet<E> subSet( in subSet()
209 protected NavigableSet<E> standardSubSet( in standardSubSet()
224 protected SortedSet<E> standardSubSet( in standardSubSet()
244 public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) { in tailSet()
253 protected SortedSet<E> standardTailSet(@ParametricNullness E fromElement) { in standardTailSet()
H A DAbstractMapBasedMultimap.java668 public SortedSet<V> subSet(@ParametricNullness V fromElement, @ParametricNullness V toElement) { in subSet()
677 public SortedSet<V> tailSet(@ParametricNullness V fromElement) { in tailSet()
751 public NavigableSet<V> subSet( in subSet()
766 public NavigableSet<V> tailSet(@ParametricNullness V fromElement, boolean inclusive) { in tailSet()
1055 public SortedSet<K> subSet(@ParametricNullness K fromElement, @ParametricNullness K toElement) { in subSet()
1060 public SortedSet<K> tailSet(@ParametricNullness K fromElement) { in tailSet()
1133 public NavigableSet<K> subSet( in subSet()
1139 public NavigableSet<K> subSet( in subSet()
1149 public NavigableSet<K> tailSet(@ParametricNullness K fromElement) { in tailSet()
1154 public NavigableSet<K> tailSet(@ParametricNullness K fromElement, boolean inclusive) { in tailSet()
H A DSortedMultisets.java70 public SortedSet<E> subSet(@ParametricNullness E fromElement, @ParametricNullness E toElement) { in subSet()
80 public SortedSet<E> tailSet(@ParametricNullness E fromElement) { in tailSet()
152 public NavigableSet<E> subSet( in subSet()
171 public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) { in tailSet()
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/
H A DNavigableSet.java230 NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet()
289 NavigableSet<E> tailSet(E fromElement, boolean inclusive); in tailSet()
300 SortedSet<E> subSet(E fromElement, E toElement); in subSet()
322 SortedSet<E> tailSet(E fromElement); in tailSet()
H A DTreeSet.java324 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet()
350 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
361 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
383 public SortedSet<E> tailSet(E fromElement) { in tailSet()
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/
DNavigableSet.java230 NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet()
289 NavigableSet<E> tailSet(E fromElement, boolean inclusive); in tailSet()
300 SortedSet<E> subSet(E fromElement, E toElement); in subSet()
322 SortedSet<E> tailSet(E fromElement); in tailSet()
DTreeSet.java324 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet()
350 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
361 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
383 public SortedSet<E> tailSet(E fromElement) { in tailSet()
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/util/
H A DNavigableSet.annotated.java65 public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean … in subSet()
69 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive); in tailSet()
71 public java.util.SortedSet<E> subSet(E fromElement, E toElement); in subSet()
75 public java.util.SortedSet<E> tailSet(E fromElement); in tailSet()
H A DTreeSet.annotated.java60 public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean … in subSet()
64 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive) { throw new RuntimeExcep… in tailSet()
66 public java.util.SortedSet<E> subSet(E fromElement, E toElement) { throw new RuntimeException("Stub… in subSet()
70 public java.util.SortedSet<E> tailSet(E fromElement) { throw new RuntimeException("Stub!"); } in tailSet()
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/23/libcore/ojluni/src/main/java/java/util/
DNavigableSet.java230 NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet()
289 NavigableSet<E> tailSet(E fromElement, boolean inclusive); in tailSet()
300 SortedSet<E> subSet(E fromElement, E toElement); in subSet()
322 SortedSet<E> tailSet(E fromElement); in tailSet()
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/util/concurrent/
H A DConcurrentSkipListSet.annotated.java96 public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean … in subSet()
100 public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive) { throw new RuntimeExcep… in tailSet()
102 public java.util.NavigableSet<E> subSet(E fromElement, E toElement) { throw new RuntimeException("S… in subSet()
106 public java.util.NavigableSet<E> tailSet(E fromElement) { throw new RuntimeException("Stub!"); } in tailSet()
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/
H A DSynchronizedNavigableSetTest.java123 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet()
129 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
134 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
140 public SortedSet<E> tailSet(E fromElement) { in tailSet()
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedNavigableSetTest.java123 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet()
129 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
134 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
140 public SortedSet<E> tailSet(E fromElement) { in tailSet()
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListSet.java436 public NavigableSet<E> subSet(E fromElement, in subSet()
459 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
469 public NavigableSet<E> subSet(E fromElement, E toElement) { in subSet()
487 public NavigableSet<E> tailSet(E fromElement) { in tailSet()
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListSet.java436 public NavigableSet<E> subSet(E fromElement, in subSet()
459 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
469 public NavigableSet<E> subSet(E fromElement, E toElement) { in subSet()
487 public NavigableSet<E> tailSet(E fromElement) { in tailSet()
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/19/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListSet.java436 public NavigableSet<E> subSet(E fromElement, in subSet()
459 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
469 public NavigableSet<E> subSet(E fromElement, E toElement) { in subSet()
487 public NavigableSet<E> tailSet(E fromElement) { in tailSet()
/aosp_15_r20/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeSet.java201 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet()
208 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
213 public SortedSet<E> tailSet(E fromElement) { in tailSet()
218 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
/aosp_15_r20/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeSet.java201 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet()
208 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
213 public SortedSet<E> tailSet(E fromElement) { in tailSet()
218 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/24/libcore/ojluni/src/main/java/java/util/
DTreeSet.java324 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet()
350 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { in tailSet()
361 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
383 public SortedSet<E> tailSet(E fromElement) { in tailSet()

12345678910>>...24