Home
last modified time | relevance | path

Searched refs:aboveAll (Results 1 – 5 of 5) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DCut.java72 if (that == aboveAll()) { in compareTo()
178 static <C extends Comparable> Cut<C> aboveAll() { in aboveAll() method in Cut
267 return (previous == null) ? Cut.<C>aboveAll() : new AboveValue<C>(previous); in withUpperBoundType()
328 return (next == null) ? Cut.<C>aboveAll() : belowValue(next); in withUpperBoundType()
349 return (next != null) ? belowValue(next) : Cut.<C>aboveAll(); in canonical()
DRange.java274 return create(Cut.aboveValue(endpoint), Cut.<C>aboveAll()); in greaterThan()
284 return create(Cut.belowValue(endpoint), Cut.<C>aboveAll()); in atLeast()
306 new Range<Comparable>(Cut.belowAll(), Cut.aboveAll());
361 if (lowerBound.compareTo(upperBound) > 0 || lowerBound == Cut.<C>aboveAll() in Range()
401 return upperBound != Cut.aboveAll(); in hasUpperBound()
DTreeRangeSet.java490 || nextComplementRangeLowerBound == Cut.<C>aboveAll()) {
499 negativeRange = Range.create(nextComplementRangeLowerBound, Cut.<C>aboveAll());
500 nextComplementRangeLowerBound = Cut.aboveAll();
519 : Cut.<C>aboveAll();
527 cut = (positiveItr.peek().upperBound == Cut.<C>aboveAll())
537 MoreObjects.firstNonNull(cut, Cut.<C>aboveAll());
DImmutableRangeSet.java226 upperBound = Cut.<C>aboveAll(); in get()
/external/guava/guava-tests/test/com/google/common/collect/
DTreeRangeSetTest.java93 cutsToTest.add(Cut.<Integer>aboveAll()); in aboveAll() method