/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/ |
H A D | ContiguousSet.java | 154 public ContiguousSet<C> headSet(C toElement) { in headSet() 161 public ContiguousSet<C> headSet(C toElement, boolean inclusive) { in headSet() 166 public ContiguousSet<C> subSet(C fromElement, C toElement) { in subSet() 177 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSet() 200 abstract ContiguousSet<C> headSetImpl(C toElement, boolean inclusive); in headSetImpl() 204 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive); in subSetImpl()
|
H A D | ForwardingNavigableSet.java | 199 @ParametricNullness E toElement, in subSet() 212 @ParametricNullness E toElement, in standardSubSet() 225 @ParametricNullness E fromElement, @ParametricNullness E toElement) { in standardSubSet() 230 public NavigableSet<E> headSet(@ParametricNullness E toElement, boolean inclusive) { in headSet() 239 protected SortedSet<E> standardHeadSet(@ParametricNullness E toElement) { in standardHeadSet()
|
H A D | AbstractMapBasedMultimap.java | 651 public SortedSet<V> headSet(@ParametricNullness V toElement) { in headSet() 660 public SortedSet<V> subSet(@ParametricNullness V fromElement, @ParametricNullness V toElement) { in subSet() 746 @ParametricNullness V toElement, in subSet() 753 public NavigableSet<V> headSet(@ParametricNullness V toElement, boolean inclusive) { in headSet() 1031 public SortedSet<K> headSet(@ParametricNullness K toElement) { in headSet() 1042 public SortedSet<K> subSet(@ParametricNullness K fromElement, @ParametricNullness K toElement) { in subSet() 1110 public NavigableSet<K> headSet(@ParametricNullness K toElement) { in headSet() 1115 public NavigableSet<K> headSet(@ParametricNullness K toElement, boolean inclusive) { in headSet() 1121 @ParametricNullness K fromElement, @ParametricNullness K toElement) { in subSet() 1129 @ParametricNullness K toElement, in subSet()
|
H A D | SortedMultisets.java | 70 public SortedSet<E> subSet(@ParametricNullness E fromElement, @ParametricNullness E toElement) { in subSet() 75 public SortedSet<E> headSet(@ParametricNullness E toElement) { in headSet() 155 @ParametricNullness E toElement, in subSet() 165 public NavigableSet<E> headSet(@ParametricNullness E toElement, boolean inclusive) { in headSet()
|
H A D | ImmutableSortedSet.java | 585 public ImmutableSortedSet<E> headSet(E toElement) { in headSet() 591 public ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) { in headSet() 608 public ImmutableSortedSet<E> subSet(E fromElement, E toElement) { in subSet() 616 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() 648 abstract ImmutableSortedSet<E> headSetImpl(E toElement, boolean inclusive); in headSetImpl() 651 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive); in subSetImpl()
|
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/ |
H A D | ContiguousSet.java | 154 public ContiguousSet<C> headSet(C toElement) { in headSet() 161 public ContiguousSet<C> headSet(C toElement, boolean inclusive) { in headSet() 166 public ContiguousSet<C> subSet(C fromElement, C toElement) { in subSet() 177 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSet() 200 abstract ContiguousSet<C> headSetImpl(C toElement, boolean inclusive); in headSetImpl() 204 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive); in subSetImpl()
|
H A D | ForwardingNavigableSet.java | 199 @ParametricNullness E toElement, in subSet() 212 @ParametricNullness E toElement, in standardSubSet() 225 @ParametricNullness E fromElement, @ParametricNullness E toElement) { in standardSubSet() 230 public NavigableSet<E> headSet(@ParametricNullness E toElement, boolean inclusive) { in headSet() 239 protected SortedSet<E> standardHeadSet(@ParametricNullness E toElement) { in standardHeadSet()
|
H A D | AbstractMapBasedMultimap.java | 659 public SortedSet<V> headSet(@ParametricNullness V toElement) { in headSet() 668 public SortedSet<V> subSet(@ParametricNullness V fromElement, @ParametricNullness V toElement) { in subSet() 754 @ParametricNullness V toElement, in subSet() 761 public NavigableSet<V> headSet(@ParametricNullness V toElement, boolean inclusive) { in headSet() 1044 public SortedSet<K> headSet(@ParametricNullness K toElement) { in headSet() 1055 public SortedSet<K> subSet(@ParametricNullness K fromElement, @ParametricNullness K toElement) { in subSet() 1123 public NavigableSet<K> headSet(@ParametricNullness K toElement) { in headSet() 1128 public NavigableSet<K> headSet(@ParametricNullness K toElement, boolean inclusive) { in headSet() 1134 @ParametricNullness K fromElement, @ParametricNullness K toElement) { in subSet() 1142 @ParametricNullness K toElement, in subSet()
|
H A D | SortedMultisets.java | 70 public SortedSet<E> subSet(@ParametricNullness E fromElement, @ParametricNullness E toElement) { in subSet() 75 public SortedSet<E> headSet(@ParametricNullness E toElement) { in headSet() 155 @ParametricNullness E toElement, in subSet() 165 public NavigableSet<E> headSet(@ParametricNullness E toElement, boolean inclusive) { in headSet()
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/ |
H A D | NavigableSet.java | 231 E toElement, boolean toInclusive); in subSet() 260 NavigableSet<E> headSet(E toElement, boolean inclusive); in headSet() 300 SortedSet<E> subSet(E fromElement, E toElement); in subSet() 311 SortedSet<E> headSet(E toElement); in headSet()
|
H A D | TreeSet.java | 325 E toElement, boolean toInclusive) { in subSet() 338 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 361 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() 372 public SortedSet<E> headSet(E toElement) { in headSet()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/ |
D | NavigableSet.java | 231 E toElement, boolean toInclusive); in subSet() 260 NavigableSet<E> headSet(E toElement, boolean inclusive); in headSet() 300 SortedSet<E> subSet(E fromElement, E toElement); in subSet() 311 SortedSet<E> headSet(E toElement); in headSet()
|
D | TreeSet.java | 325 E toElement, boolean toInclusive) { in subSet() 338 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 361 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() 372 public SortedSet<E> headSet(E toElement) { in headSet()
|
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/util/ |
H A D | NavigableSet.annotated.java | 65 public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean … in subSet() 67 public java.util.NavigableSet<E> headSet(E toElement, boolean inclusive); in headSet() 71 public java.util.SortedSet<E> subSet(E fromElement, E toElement); in subSet() 73 public java.util.SortedSet<E> headSet(E toElement); in headSet()
|
H A D | TreeSet.annotated.java | 60 public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean … in subSet() 62 public java.util.NavigableSet<E> headSet(E toElement, boolean inclusive) { throw new RuntimeExcepti… in headSet() 66 public java.util.SortedSet<E> subSet(E fromElement, E toElement) { throw new RuntimeException("Stub… in subSet() 68 public java.util.SortedSet<E> headSet(E toElement) { throw new RuntimeException("Stub!"); } in headSet()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/23/libcore/ojluni/src/main/java/java/util/ |
D | NavigableSet.java | 231 E toElement, boolean toInclusive); in subSet() 260 NavigableSet<E> headSet(E toElement, boolean inclusive); in headSet() 300 SortedSet<E> subSet(E fromElement, E toElement); in subSet() 311 SortedSet<E> headSet(E toElement); in headSet()
|
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/util/concurrent/ |
H A D | ConcurrentSkipListSet.annotated.java | 96 public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean … in subSet() 98 public java.util.NavigableSet<E> headSet(E toElement, boolean inclusive) { throw new RuntimeExcepti… in headSet() 102 public java.util.NavigableSet<E> subSet(E fromElement, E toElement) { throw new RuntimeException("S… in subSet() 104 public java.util.NavigableSet<E> headSet(E toElement) { throw new RuntimeException("Stub!"); } in headSet()
|
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/ |
H A D | SynchronizedNavigableSetTest.java | 88 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 94 public SortedSet<E> headSet(E toElement) { in headSet() 123 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() 129 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
|
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | SynchronizedNavigableSetTest.java | 88 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 94 public SortedSet<E> headSet(E toElement) { in headSet() 123 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() 129 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListSet.java | 438 E toElement, in subSet() 450 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 469 public NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() 478 public NavigableSet<E> headSet(E toElement) { in headSet()
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/concurrent/ |
H A D | ConcurrentSkipListSet.java | 438 E toElement, in subSet() 450 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 469 public NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() 478 public NavigableSet<E> headSet(E toElement) { in headSet()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/19/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListSet.java | 438 E toElement, in subSet() 450 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 469 public NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() 478 public NavigableSet<E> headSet(E toElement) { in headSet()
|
/aosp_15_r20/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
H A D | SafeTreeSet.java | 135 public SortedSet<E> headSet(E toElement) { in headSet() 140 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 201 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() 208 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
|
/aosp_15_r20/external/guava/android/guava-testlib/src/com/google/common/collect/testing/ |
H A D | SafeTreeSet.java | 135 public SortedSet<E> headSet(E toElement) { in headSet() 140 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 201 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() 208 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/24/libcore/ojluni/src/main/java/java/util/ |
D | TreeSet.java | 325 E toElement, boolean toInclusive) { in subSet() 338 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() 361 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() 372 public SortedSet<E> headSet(E toElement) { in headSet()
|