/external/guava/guava/src/com/google/common/collect/ |
D | GeneralRange.java | 47 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()
|
D | ForwardingSortedMultiset.java | 203 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()
|
D | UnmodifiableSortedMultiset.java | 101 E lowerBound, BoundType lowerBoundType, in subMultiset() argument 104 lowerBound, lowerBoundType, upperBound, upperBoundType)); in subMultiset()
|
D | RegularContiguousSet.java | 155 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { 156 return Range.create(range.lowerBound.withLowerBoundType(lowerBoundType, domain),
|
D | SortedMultiset.java | 136 SortedMultiset<E> subMultiset(E lowerBound, BoundType lowerBoundType, in subMultiset() argument
|
D | EmptyContiguousSet.java | 57 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { in range() argument
|
D | ImmutableSortedMultiset.java | 372 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) { in subMultiset() argument 375 return tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound, upperBoundType); in subMultiset()
|
D | ContiguousSet.java | 166 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType); in range() argument
|
D | Range.java | 393 public BoundType lowerBoundType() { in lowerBoundType() method in Range
|
D | TreeRangeSet.java | 469 complementLowerBoundWindow.lowerBoundType() == BoundType.CLOSED).values(); 725 lowerBoundWindow.lowerBoundType() == BoundType.CLOSED).values().iterator();
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | RangeTest.java | 49 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()
|
D | ForwardingSortedMultisetTest.java | 95 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) { in subMultiset() argument 96 return standardSubMultiset(lowerBound, lowerBoundType, upperBound, upperBoundType); in subMultiset()
|
D | TreeRangeSetTest.java | 55 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/ |
D | UnmodifiableSortedMultiset.java | 99 E lowerBound, BoundType lowerBoundType, in subMultiset() argument 102 lowerBound, lowerBoundType, upperBound, upperBoundType)); in subMultiset()
|
D | RegularContiguousSet.java | 136 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { in range() argument 137 return Range.create(range.lowerBound.withLowerBoundType(lowerBoundType, domain), in range()
|
D | SortedMultiset.java | 53 SortedMultiset<E> subMultiset(E lowerBound, BoundType lowerBoundType, in subMultiset() argument
|
D | EmptyContiguousSet.java | 55 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { in range() argument
|
D | ContiguousSet.java | 135 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType); in range() argument
|