Home
last modified time | relevance | path

Searched refs:toInclusive (Results 1 – 25 of 40) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
DForwardingNavigableSet.java180 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()
DContiguousSet.java110 boolean toInclusive) { in subSet() argument
114 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive); in subSet()
135 C toElement, boolean toInclusive); in subSetImpl() argument
DDescendingImmutableSortedSet.java53 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument
54 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet(); in subSetImpl()
DRegularContiguousSet.java55 boolean toInclusive) { in subSetImpl() argument
56 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) { in subSetImpl()
62 toElement, BoundType.forBoolean(toInclusive))); in subSetImpl()
DSortedMultisets.java136 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
139 toElement, BoundType.forBoolean(toInclusive))); in subSet()
DTreeRangeSet.java272 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)));
DRegularImmutableSortedSet.java231 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument
233 .headSetImpl(toElement, toInclusive); in subSetImpl()
DForwardingNavigableMap.java367 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()
DSets.java982 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();
DImmutableSortedSet.java652 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
DImmutableRangeSet.java449 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
450 if (!fromInclusive && !toInclusive && Range.compareOrThrow(fromElement, toElement) == 0) {
455 toElement, BoundType.forBoolean(toInclusive)));
DEmptyImmutableSortedSet.java113 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument
DEmptyContiguousSet.java66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
DMaps.java907 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 …]
DAbstractMapBasedMultimap.java741 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/
DRegularContiguousSet.java53 boolean toInclusive) { in subSetImpl() argument
54 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) { in subSetImpl()
60 toElement, BoundType.forBoolean(toInclusive))); in subSetImpl()
DImmutableSortedSet.java354 boolean toInclusive) { in subSet() argument
359 if (cmp == 0 && !(fromInclusive && toInclusive)) { in subSet()
362 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); in subSet()
DEmptyContiguousSet.java64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
DContiguousSet.java104 C toElement, boolean toInclusive); in subSetImpl() argument
DImmutableSortedMap.java281 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/
DSafeTreeSet.java172 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
175 checkValid(toElement), toInclusive)); in subSet()
DSafeTreeMap.java249 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
251 checkValid(fromKey), fromInclusive, checkValid(toKey), toInclusive));
/external/guava/guava-tests/test/com/google/common/collect/
DSynchronizedNavigableSetTest.java114 boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
117 fromElement, fromInclusive, toElement, toInclusive); in subSet()
DFilteredCollectionsTest.java313 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()
DSynchronizedNavigableMapTest.java192 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument
194 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive); in subMap()

12