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

  /libcore/luni/src/main/java/java/util/
TreeSet.java 356 boolean endInclusive) {
362 endInclusive));
374 public NavigableSet<E> headSet(E end, boolean endInclusive) {
382 return new TreeSet<E>(backingMap.headMap(end, endInclusive));
  /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;
507 if (c++ == endInclusive) {
    [all...]

Completed in 51 milliseconds