Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/collect/
DContiguousSet.java57 @Override ContiguousSet<C> subSet(C fromElement, boolean fromInclusive, C toElement, in subSet() argument
62 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive); in subSet()
78 /*@Override*/ abstract ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, in subSetImpl() argument
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
DRegularContiguousSet.java56 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, in subSetImpl() argument
58 return range.intersection(Ranges.range(fromElement, BoundType.forBoolean(fromInclusive), in subSetImpl()
DRegularImmutableSortedSet.java214 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument
215 return tailSetImpl(fromElement, fromInclusive) in subSetImpl()
DImmutableSortedSet.java624 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
628 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive); in subSet()
658 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive); in subSetImpl() argument
DEmptyImmutableSortedSet.java111 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument
DImmutableSortedMap.java682 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey,
687 return tailMap(fromKey, fromInclusive).headMap(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.java54 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, in subSetImpl() argument
56 return range.intersection(Ranges.range(fromElement, BoundType.forBoolean(fromInclusive), in subSetImpl()
DImmutableSortedSet.java337 ImmutableSortedSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, in subSet() argument
343 if (cmp == 0 && !(fromInclusive && toInclusive)) { in subSet()
346 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); in subSet()
DImmutableSortedMap.java291 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive){ in subMap() argument
295 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.java212 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument
214 checkValid(fromKey), fromInclusive, checkValid(toKey), toInclusive)); in subMap()