HomeSort by relevance Sort by last modified time
    Searched full:frominclusive (Results 1 - 20 of 20) sorted by null

  /external/guava/guava/src/com/google/common/collect/
ContiguousSet.java 57 @Override ContiguousSet<C> subSet(C fromElement, boolean fromInclusive, C toElement,
62 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive);
78 /*@Override*/ abstract ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive,
EmptyContiguousSet.java 66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
70 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) {
EmptyImmutableSortedSet.java 111 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
RegularContiguousSet.java 56 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement,
58 return range.intersection(Ranges.range(fromElement, BoundType.forBoolean(fromInclusive),
RegularImmutableSortedSet.java 214 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
215 return tailSetImpl(fromElement, fromInclusive)
ImmutableSortedSet.java 624 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
628 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive);
658 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive);
ImmutableSortedMap.java 682 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/
EmptyContiguousSet.java 64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
68 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) {
RegularContiguousSet.java 54 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement,
56 return range.intersection(Ranges.range(fromElement, BoundType.forBoolean(fromInclusive),
ImmutableSortedSet.java 337 ImmutableSortedSet<E> subSet(E fromElement, boolean fromInclusive, E toElement,
343 if (cmp == 0 && !(fromInclusive && toInclusive)) {
346 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
ImmutableSortedMap.java 291 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive){
295 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive);
  /libcore/luni/src/main/java/java/util/
TreeMap.java 697 public NavigableMap<K, V> subMap(K from, boolean fromInclusive, K to, boolean toInclusive) {
698 Bound fromBound = fromInclusive ? INCLUSIVE : EXCLUSIVE;
703 public SortedMap<K, V> subMap(K fromInclusive, K toExclusive) {
704 return new BoundedMap(true, fromInclusive, INCLUSIVE, toExclusive, EXCLUSIVE);
721 public SortedMap<K, V> tailMap(K fromInclusive) {
722 return new BoundedMap(true, fromInclusive, INCLUSIVE, null, NO_BOUND);
    [all...]
NavigableSet.java 176 * @param fromInclusive {@code true} if the low endpoint
198 NavigableSet<E> subSet(E fromElement, boolean fromInclusive,
NavigableMap.java 283 * @param fromInclusive {@code true} if the low endpoint
303 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeMap.java 212 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
214 checkValid(fromKey), fromInclusive, checkValid(toKey), toInclusive));
SafeTreeSet.java 172 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
174 delegate.subSet(checkValid(fromElement), fromInclusive,
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentNavigableMap.java 31 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
ConcurrentSkipListMap.java     [all...]
ConcurrentSkipListSet.java 373 boolean fromInclusive,
377 (m.subMap(fromElement, fromInclusive,
  /prebuilts/sdk/13/
android.jar 

Completed in 795 milliseconds