/external/guava/guava/src/com/google/common/collect/ |
D | ForwardingNavigableSet.java | 180 boolean toInclusive) { in subSet() argument 181 return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive); in subSet() 194 boolean toInclusive) { in standardSubSet() argument 195 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); in standardSubSet()
|
D | ContiguousSet.java | 110 boolean toInclusive) { in subSet() argument 114 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive); in subSet() 135 C toElement, boolean toInclusive); in subSetImpl() argument
|
D | DescendingImmutableSortedSet.java | 53 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument 54 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet(); in subSetImpl()
|
D | RegularContiguousSet.java | 55 boolean toInclusive) { in subSetImpl() argument 56 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) { in subSetImpl() 62 toElement, BoundType.forBoolean(toInclusive))); in subSetImpl()
|
D | SortedMultisets.java | 136 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument 139 toElement, BoundType.forBoolean(toInclusive))); in subSet()
|
D | TreeRangeSet.java | 272 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) { in subMap() argument 275 toKey, BoundType.forBoolean(toInclusive))); in subMap() 433 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) { 436 toKey, BoundType.forBoolean(toInclusive))); 656 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) { 658 fromKey, BoundType.forBoolean(fromInclusive), toKey, BoundType.forBoolean(toInclusive)));
|
D | RegularImmutableSortedSet.java | 231 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument 233 .headSetImpl(toElement, toInclusive); in subSetImpl()
|
D | ForwardingNavigableMap.java | 367 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument 368 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive); in subMap()
|
D | Sets.java | 982 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { 984 unfiltered().subSet(fromElement, fromInclusive, toElement, toInclusive), predicate); 1464 boolean toInclusive) { 1469 toInclusive)); 1623 boolean toInclusive) { 1624 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet();
|
D | ImmutableSortedSet.java | 652 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument 656 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive); in subSet() 691 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive); in subSetImpl() argument
|
D | ImmutableRangeSet.java | 449 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { 450 if (!fromInclusive && !toInclusive && Range.compareOrThrow(fromElement, toElement) == 0) { 455 toElement, BoundType.forBoolean(toInclusive)));
|
D | EmptyImmutableSortedSet.java | 113 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument
|
D | EmptyContiguousSet.java | 66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
|
D | Maps.java | 907 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 908 return asMap(set.subSet(fromKey, fromInclusive, toKey, toInclusive), function); 1068 E toElement, boolean toInclusive) { 1070 fromElement, fromInclusive, toElement, toInclusive)); 2053 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 2055 fromMap().subMap(fromKey, fromInclusive, toKey, toInclusive), 3002 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 3004 unfiltered.subMap(fromKey, fromInclusive, toKey, toInclusive), entryPredicate); 3227 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 3232 toInclusive)); [all …]
|
D | AbstractMapBasedMultimap.java | 741 V fromElement, boolean fromInclusive, V toElement, boolean toInclusive) { in subSet() argument 743 getSortedSetDelegate().subSet(fromElement, fromInclusive, toElement, toInclusive)); in subSet() 1090 K fromElement, boolean fromInclusive, K toElement, boolean toInclusive) { in subSet() argument 1092 sortedMap().subMap(fromElement, fromInclusive, toElement, toInclusive)); in subSet() 1539 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 1540 return new NavigableAsMap(sortedMap().subMap(fromKey, fromInclusive, toKey, toInclusive));
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | RegularContiguousSet.java | 53 boolean toInclusive) { in subSetImpl() argument 54 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) { in subSetImpl() 60 toElement, BoundType.forBoolean(toInclusive))); in subSetImpl()
|
D | ImmutableSortedSet.java | 354 boolean toInclusive) { in subSet() argument 359 if (cmp == 0 && !(fromInclusive && toInclusive)) { in subSet() 362 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); in subSet()
|
D | EmptyContiguousSet.java | 64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
|
D | ContiguousSet.java | 104 C toElement, boolean toInclusive); in subSetImpl() argument
|
D | ImmutableSortedMap.java | 281 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument 285 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive); in subMap()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | SafeTreeSet.java | 172 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument 175 checkValid(toElement), toInclusive)); in subSet()
|
D | SafeTreeMap.java | 249 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { 251 checkValid(fromKey), fromInclusive, checkValid(toKey), toInclusive));
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | SynchronizedNavigableSetTest.java | 114 boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument 117 fromElement, fromInclusive, toElement, toInclusive); in subSet()
|
D | FilteredCollectionsTest.java | 313 for (boolean toInclusive : ImmutableList.of(true, false)) { in testNavigableSubSet() 315 createUnfiltered(contents).subSet(i, fromInclusive, j, toInclusive), EVEN); in testNavigableSubSet() 317 .subSet(i, fromInclusive, j, toInclusive); in testNavigableSubSet()
|
D | SynchronizedNavigableMapTest.java | 192 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument 194 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive); in subMap()
|