Searched refs:belowValue (Results 1 – 7 of 7) sorted by relevance
/external/guava/guava/src/com/google/common/collect/ |
D | Range.java | 165 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()
|
D | Cut.java | 156 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()
|
D | ImmutableRangeMap.java | 166 Cut.belowValue(key), KeyPresentBehavior.ANY_PRESENT, KeyAbsentBehavior.NEXT_LOWER); in get() 179 Cut.belowValue(key), KeyPresentBehavior.ANY_PRESENT, KeyAbsentBehavior.NEXT_LOWER); in getEntry()
|
D | TreeRangeSet.java | 99 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));
|
D | ImmutableRangeSet.java | 129 Cut.belowValue(value), in rangeContaining()
|
D | TreeRangeMap.java | 116 entriesByLowerBound.floorEntry(Cut.belowValue(key)); in getEntry()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | TreeRangeSetTest.java | 90 cutsToTest.add(Cut.belowValue(i)); in Cut.belowValue()
|