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

  /libcore/luni/src/main/java/java/util/
TreeSet.java 355 public NavigableSet<E> subSet(E start, boolean startInclusive, E end,
361 return new TreeSet<E>(backingMap.subMap(start, startInclusive, end,
392 public NavigableSet<E> tailSet(E start, boolean startInclusive) {
400 return new TreeSet<E>(backingMap.tailMap(start, startInclusive));
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 494 * @throws IllegalArgumentException if {@code endInclusive < startInclusive}
496 public static CharMatcher inRange(final char startInclusive, final char endInclusive) {
497 checkArgument(endInclusive >= startInclusive);
500 return startInclusive <= c && c <= endInclusive;
504 char c = startInclusive;
    [all...]

Completed in 58 milliseconds