Home
last modified time | relevance | path

Searched refs:lowerBoundType (Results 1 – 18 of 18) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DGeneralRange.java47 BoundType lowerBoundType = range.hasLowerBound() ? range.lowerBoundType() : OPEN; in from() local
53 lowerBoundType, range.hasUpperBound(), upperEndpoint, upperBoundType); in from()
94 private final BoundType lowerBoundType; field in GeneralRange
101 @Nullable T lowerEndpoint, BoundType lowerBoundType, boolean hasUpperBound, in GeneralRange() argument
107 this.lowerBoundType = checkNotNull(lowerBoundType); in GeneralRange()
123 checkArgument(lowerBoundType != OPEN | upperBoundType != OPEN); in GeneralRange()
260 .append(lowerBoundType == CLOSED ? '[' : '(') in toString()
273 return lowerBoundType; in getLowerBoundType()
DForwardingSortedMultiset.java203 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) { in subMultiset() argument
204 return delegate().subMultiset(lowerBound, lowerBoundType, upperBound, upperBoundType); in subMultiset()
216 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) { in standardSubMultiset() argument
217 return tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound, upperBoundType); in standardSubMultiset()
DUnmodifiableSortedMultiset.java101 E lowerBound, BoundType lowerBoundType, in subMultiset() argument
104 lowerBound, lowerBoundType, upperBound, upperBoundType)); in subMultiset()
DRegularContiguousSet.java155 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) {
156 return Range.create(range.lowerBound.withLowerBoundType(lowerBoundType, domain),
DSortedMultiset.java136 SortedMultiset<E> subMultiset(E lowerBound, BoundType lowerBoundType, in subMultiset() argument
DEmptyContiguousSet.java57 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { in range() argument
DImmutableSortedMultiset.java372 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) { in subMultiset() argument
375 return tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound, upperBoundType); in subMultiset()
DContiguousSet.java166 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType); in range() argument
DRange.java393 public BoundType lowerBoundType() { in lowerBoundType() method in Range
DTreeRangeSet.java469 complementLowerBoundWindow.lowerBoundType() == BoundType.CLOSED).values();
725 lowerBoundWindow.lowerBoundType() == BoundType.CLOSED).values().iterator();
/external/guava/guava-tests/test/com/google/common/collect/
DRangeTest.java49 assertEquals(OPEN, range.lowerBoundType()); in testOpen()
76 assertEquals(CLOSED, range.lowerBoundType()); in testClosed()
98 assertEquals(OPEN, range.lowerBoundType()); in testOpenClosed()
112 assertEquals(CLOSED, range.lowerBoundType()); in testClosedOpen()
145 assertEquals(CLOSED, range.lowerBoundType()); in testSingleton()
161 assertEquals(CLOSED, range.lowerBoundType()); in testEmpty1()
177 assertEquals(OPEN, range.lowerBoundType()); in testEmpty2()
207 assertEquals(OPEN, range.lowerBoundType()); in testGreaterThan()
221 assertEquals(CLOSED, range.lowerBoundType()); in testAtLeast()
262 range.lowerBoundType(); in assertUnboundedBelow()
DForwardingSortedMultisetTest.java95 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) { in subMultiset() argument
96 return standardSubMultiset(lowerBound, lowerBoundType, upperBound, upperBoundType); in subMultiset()
DTreeRangeSetTest.java55 for (BoundType lowerBoundType : BoundType.values()) {
58 queryBuilder.add(Range.range(i, lowerBoundType, j, upperBoundType)); in Range.range() argument
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DUnmodifiableSortedMultiset.java99 E lowerBound, BoundType lowerBoundType, in subMultiset() argument
102 lowerBound, lowerBoundType, upperBound, upperBoundType)); in subMultiset()
DRegularContiguousSet.java136 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { in range() argument
137 return Range.create(range.lowerBound.withLowerBoundType(lowerBoundType, domain), in range()
DSortedMultiset.java53 SortedMultiset<E> subMultiset(E lowerBound, BoundType lowerBoundType, in subMultiset() argument
DEmptyContiguousSet.java55 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { in range() argument
DContiguousSet.java135 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType); in range() argument