Searched refs:fromInclusive (Results 1 - 13 of 13) sorted by relevance

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEmptyContiguousSet.java64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
68 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { argument
63 subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DRegularContiguousSet.java54 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, argument
56 return range.intersection(Ranges.range(fromElement, BoundType.forBoolean(fromInclusive),
H A DImmutableSortedSet.java337 ImmutableSortedSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, argument
343 if (cmp == 0 && !(fromInclusive && toInclusive)) {
346 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
H A DImmutableSortedMap.java291 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive){ argument
295 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive);
/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java57 @Override ContiguousSet<C> subSet(C fromElement, boolean fromInclusive, C toElement, argument
62 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive);
78 /*@Override*/ abstract ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, argument
H A DEmptyContiguousSet.java66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
70 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { argument
65 subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DEmptyImmutableSortedSet.java111 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
110 subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DRegularContiguousSet.java56 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, argument
58 return range.intersection(Ranges.range(fromElement, BoundType.forBoolean(fromInclusive),
H A DRegularImmutableSortedSet.java214 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
215 return tailSetImpl(fromElement, fromInclusive)
213 subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DImmutableSortedSet.java624 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
628 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive);
658 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive);
623 subSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
657 subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DImmutableSortedMap.java682 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, argument
687 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java212 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
214 checkValid(fromKey), fromInclusive, checkValid(toKey), toInclusive));
211 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
H A DSafeTreeSet.java172 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
174 delegate.subSet(checkValid(fromElement), fromInclusive,
171 subSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument

Completed in 182 milliseconds