Home
last modified time | relevance | path

Searched refs:belowValue (Results 1 – 7 of 7) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DRange.java165 return create(Cut.aboveValue(lower), Cut.belowValue(upper)); in open()
177 return create(Cut.belowValue(lower), Cut.aboveValue(upper)); in closed()
190 return create(Cut.belowValue(lower), Cut.belowValue(upper)); in closedOpen()
222 : Cut.belowValue(lower); in range()
224 ? Cut.belowValue(upper) in range()
236 return create(Cut.<C>belowAll(), Cut.belowValue(endpoint)); in lessThan()
284 return create(Cut.belowValue(endpoint), Cut.<C>aboveAll()); in atLeast()
DCut.java156 return Cut.<Comparable<?>>belowValue(domain.minValue()); in canonical()
234 static <C extends Comparable> Cut<C> belowValue(C endpoint) { in belowValue() method in Cut
319 return (next == null) ? Cut.<C>belowAll() : belowValue(next); in withLowerBoundType()
328 return (next == null) ? Cut.<C>aboveAll() : belowValue(next); in withUpperBoundType()
349 return (next != null) ? belowValue(next) : Cut.<C>aboveAll(); in canonical()
DImmutableRangeMap.java166 Cut.belowValue(key), KeyPresentBehavior.ANY_PRESENT, KeyAbsentBehavior.NEXT_LOWER); in get()
179 Cut.belowValue(key), KeyPresentBehavior.ANY_PRESENT, KeyAbsentBehavior.NEXT_LOWER); in getEntry()
DTreeRangeSet.java99 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(Cut.belowValue(value)); in rangeContaining()
728 .min(lowerBoundWindow.upperBound, Cut.belowValue(restriction.upperBound));
752 .min(lowerBoundWindow.upperBound, Cut.belowValue(restriction.upperBound));
DImmutableRangeSet.java129 Cut.belowValue(value), in rangeContaining()
DTreeRangeMap.java116 entriesByLowerBound.floorEntry(Cut.belowValue(key)); in getEntry()
/external/guava/guava-tests/test/com/google/common/collect/
DTreeRangeSetTest.java90 cutsToTest.add(Cut.belowValue(i)); in Cut.belowValue()