OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:aboveAll
(Results
1 - 25
of
97
) sorted by null
1
2
3
4
/external/guava/guava/src/com/google/common/collect/
Cut.java
72
if (that ==
aboveAll
()) {
178
static <C extends Comparable> Cut<C>
aboveAll
() {
179
return (Cut<C>)
AboveAll
.INSTANCE;
182
private static final class
AboveAll
extends Cut<Comparable<?>> {
183
private static final
AboveAll
INSTANCE = new
AboveAll
();
185
private
AboveAll
() {
267
return (previous == null) ? Cut.<C>
aboveAll
() : new AboveValue<C>(previous);
328
return (next == null) ? Cut.<C>
aboveAll
() : belowValue(next);
349
return (next != null) ? belowValue(next) : Cut.<C>
aboveAll
();
[
all
...]
Range.java
274
return create(Cut.aboveValue(endpoint), Cut.<C>
aboveAll
());
284
return create(Cut.belowValue(endpoint), Cut.<C>
aboveAll
());
306
new Range<Comparable>(Cut.belowAll(), Cut.
aboveAll
());
361
if (lowerBound.compareTo(upperBound) > 0 || lowerBound == Cut.<C>
aboveAll
()
401
return upperBound != Cut.
aboveAll
();
TreeRangeSet.java
490
|| 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
());
ImmutableRangeSet.java
226
upperBound = Cut.<C>
aboveAll
();
/external/guava/guava-tests/test/com/google/common/collect/
TreeRangeSetTest.java
93
cutsToTest.add(Cut.<Integer>
aboveAll
());