Home
last modified time | relevance | path

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

12

/external/guava/guava/src/com/google/common/collect/
DForwardingNavigableSet.java178 boolean fromInclusive, in subSet() argument
181 return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive); in subSet()
192 boolean fromInclusive, in standardSubSet() argument
195 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); in standardSubSet()
DContiguousSet.java109 @Override public ContiguousSet<C> subSet(C fromElement, boolean fromInclusive, C toElement, in subSet() argument
114 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive); in subSet()
134 /*@Override*/ abstract ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, 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.java54 @Override ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, in subSetImpl() argument
56 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) { in subSetImpl()
61 fromElement, BoundType.forBoolean(fromInclusive), in subSetImpl()
DEmptyContiguousSet.java66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
70 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { in tailSetImpl() argument
DSortedMultisets.java136 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
138 fromElement, BoundType.forBoolean(fromInclusive), in subSet()
DTreeRangeSet.java272 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) { in subMap() argument
274 fromKey, BoundType.forBoolean(fromInclusive), in subMap()
433 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) {
435 fromKey, BoundType.forBoolean(fromInclusive),
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
232 return tailSetImpl(fromElement, fromInclusive) 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);
1462 boolean fromInclusive,
1467 fromInclusive,
1621 boolean fromInclusive,
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) {
454 fromElement, BoundType.forBoolean(fromInclusive),
DEmptyImmutableSortedSet.java113 E fromElement, boolean fromInclusive, E 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);
1067 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive,
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) {
3230 fromInclusive,
[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/
DEmptyContiguousSet.java64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
68 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { in tailSetImpl() argument
DRegularContiguousSet.java52 @Override ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, in subSetImpl() argument
54 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) { in subSetImpl()
59 fromElement, BoundType.forBoolean(fromInclusive), in subSetImpl()
DImmutableSortedSet.java353 ImmutableSortedSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, in subSet() argument
359 if (cmp == 0 && !(fromInclusive && toInclusive)) { in subSet()
362 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); in subSet()
DContiguousSet.java103 /*@Override*/ abstract ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, 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
174 delegate.subSet(checkValid(fromElement), fromInclusive, 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.java312 for (boolean fromInclusive : 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