Searched refs:tooHigh (Results 1 - 9 of 9) sorted by relevance

/external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
H A DSetGenerators.java299 int tooHigh = (set.isEmpty()) ? 0 : set.last() + 1;
300 set.add(tooHigh);
301 return checkedCreate(set).headSet(tooHigh);
319 * The (tooLow + 1, tooHigh) arguments below would be invalid because tooLow would be
320 * greater than tooHigh.
324 int tooHigh = set.last() + 1;
326 set.add(tooHigh);
328 return checkedCreate(set).subSet(tooLow + 1, tooHigh);
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DSetGenerators.java326 int tooHigh = (set.isEmpty()) ? 0 : set.last() + 1;
327 set.add(tooHigh);
328 return checkedCreate(set).headSet(tooHigh);
346 * The (tooLow + 1, tooHigh) arguments below would be invalid because tooLow would be
347 * greater than tooHigh.
351 int tooHigh = set.last() + 1;
353 set.add(tooHigh);
355 return checkedCreate(set).subSet(tooLow + 1, tooHigh);
/external/guava/guava/src/com/google/common/collect/
H A DGeneralRange.java142 || (hasLowerBound() && tooHigh(getLowerEndpoint()));
154 boolean tooHigh(@Nullable T t) { method in class:GeneralRange
164 return !tooLow(t) && !tooHigh(t);
H A DTreeMultiset.java410 } else if (range.tooHigh(current.getElement())) {
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DGeneralRangeTest.java101 assertFalse(range.tooHigh(i));
113 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooHigh(i));
/external/guava/guava-tests/test/com/google/common/collect/
H A DGeneralRangeTest.java103 assertFalse(range.tooHigh(i));
115 || (ORDERING.compare(i, 3) == 0 && lBoundType == OPEN), range.tooHigh(i));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeMultiset.java406 } else if (range.tooHigh(current.getElement())) {
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 1607 milliseconds