Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/collect/
DCut.java72 if (that == aboveAll()) { in compareTo()
175 static <C extends Comparable> Cut<C> aboveAll() { in aboveAll() method in Cut
261 return (previous == null) ? Cut.<C>aboveAll() : new AboveValue<C>(previous); in withUpperBoundType()
319 return (next == null) ? Cut.<C>aboveAll() : belowValue(next); in withUpperBoundType()
340 return (next != null) ? belowValue(next) : Cut.<C>aboveAll(); in canonical()
DRanges.java184 return create(Cut.aboveValue(endpoint), Cut.<C>aboveAll()); in greaterThan()
192 return create(Cut.belowValue(endpoint), Cut.<C>aboveAll()); in atLeast()
213 return create(Cut.<C>belowAll(), Cut.<C>aboveAll()); in all()
DRange.java159 return upperBound != Cut.aboveAll(); in hasUpperBound()