OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:INCLUSIVE
(Results
1 - 3
of
3
) sorted by null
/external/guava/guava-testlib/src/com/google/common/collect/testing/
NavigableMapTestSuiteBuilder.java
62
derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.
INCLUSIVE
));
65
derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.
INCLUSIVE
));
66
derivedSuites.add(createSubmapSuite(parentBuilder, Bound.
INCLUSIVE
, Bound.NO_BOUND));
67
derivedSuites.add(createSubmapSuite(parentBuilder, Bound.
INCLUSIVE
, Bound.EXCLUSIVE));
68
derivedSuites.add(createSubmapSuite(parentBuilder, Bound.
INCLUSIVE
, Bound.
INCLUSIVE
));
97
INCLUSIVE
,
122
// derive values for
inclusive
filtering from the input samples
163
} else if (from == Bound.NO_BOUND && to == Bound.
INCLUSIVE
) {
169
} else if (from == Bound.EXCLUSIVE && to == Bound.
INCLUSIVE
) {
[
all
...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
SortedMultisetTestSuiteBuilder.java
93
INCLUSIVE
, EXCLUSIVE, NO_BOUND;
108
Bound.
INCLUSIVE
));
114
Bound.
INCLUSIVE
));
115
derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.
INCLUSIVE
,
117
derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.
INCLUSIVE
,
119
derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.
INCLUSIVE
,
120
Bound.
INCLUSIVE
));
182
if (from == Bound.
INCLUSIVE
) {
189
if (to == Bound.
INCLUSIVE
) {
/libcore/luni/src/main/java/java/util/
TreeMap.java
698
Bound fromBound = fromInclusive ?
INCLUSIVE
: EXCLUSIVE;
699
Bound toBound = toInclusive ?
INCLUSIVE
: EXCLUSIVE;
704
return new BoundedMap(true, fromInclusive,
INCLUSIVE
, toExclusive, EXCLUSIVE);
707
public NavigableMap<K, V> headMap(K to, boolean
inclusive
) {
708
Bound toBound =
inclusive
?
INCLUSIVE
: EXCLUSIVE;
716
public NavigableMap<K, V> tailMap(K from, boolean
inclusive
) {
717
Bound fromBound =
inclusive
?
INCLUSIVE
: EXCLUSIVE;
722
return new BoundedMap(true, fromInclusive,
INCLUSIVE
, null, NO_BOUND)
[
all
...]
Completed in 155 milliseconds