Home
last modified time | relevance | path

Searched refs:boundType (Results 1 – 25 of 36) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
DCut.java49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); in withLowerBoundType() argument
50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); in withUpperBoundType() argument
131 @Override Cut<Comparable<?>> withLowerBoundType(BoundType boundType, in withLowerBoundType() argument
135 @Override Cut<Comparable<?>> withUpperBoundType(BoundType boundType, in withUpperBoundType() argument
200 @Override Cut<Comparable<?>> withLowerBoundType(BoundType boundType, in withLowerBoundType() argument
204 @Override Cut<Comparable<?>> withUpperBoundType(BoundType boundType, in withUpperBoundType() argument
252 @Override Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) { in withLowerBoundType() argument
253 switch (boundType) { in withLowerBoundType()
263 @Override Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) { in withUpperBoundType() argument
264 switch (boundType) { in withUpperBoundType()
[all …]
DDescendingImmutableSortedMultiset.java68 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument
69 return forward.tailMultiset(upperBound, boundType).descendingMultiset(); in headMultiset()
73 public ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument
74 return forward.headMultiset(lowerBound, boundType).descendingMultiset(); in tailMultiset()
DEmptyImmutableSortedMultiset.java73 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument
75 checkNotNull(boundType); in headMultiset()
80 public ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument
82 checkNotNull(boundType); in tailMultiset()
DUnmodifiableSortedMultiset.java94 public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument
96 delegate().headMultiset(upperBound, boundType)); in headMultiset()
108 public SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument
110 delegate().tailMultiset(lowerBound, boundType)); in tailMultiset()
DRegularImmutableSortedMultiset.java86 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument
87 return getSubMultiset(0, elementSet.headIndex(upperBound, checkNotNull(boundType) == CLOSED)); in headMultiset()
91 public ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument
92 return getSubMultiset(elementSet.tailIndex(lowerBound, checkNotNull(boundType) == CLOSED), in tailMultiset()
DDescendingMultiset.java67 BoundType boundType) { in headMultiset() argument
68 return forwardMultiset().tailMultiset(toElement, boundType) in headMultiset()
79 BoundType boundType) { in tailMultiset() argument
80 return forwardMultiset().headMultiset(fromElement, boundType) in tailMultiset()
DForwardingSortedMultiset.java197 public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument
198 return delegate().headMultiset(upperBound, boundType); in headMultiset()
221 public SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument
222 return delegate().tailMultiset(lowerBound, boundType); in tailMultiset()
DSortedMultiset.java121 SortedMultiset<E> headMultiset(E upperBound, BoundType boundType); in headMultiset() argument
149 SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType); in tailMultiset() argument
DGeneralRange.java68 BoundType boundType) { in downTo() argument
69 return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN); in downTo()
77 BoundType boundType) { in upTo() argument
78 return new GeneralRange<T>(comparator, false, null, OPEN, true, endpoint, boundType); in upTo()
DRange.java256 C endpoint, BoundType boundType) { in upTo() argument
257 switch (boundType) { in upTo()
294 C endpoint, BoundType boundType) { in downTo() argument
295 switch (boundType) { in downTo()
DImmutableSortedMultiset.java368 public abstract ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType); in headMultiset() argument
379 public abstract ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType); in tailMultiset() argument
DTreeMultiset.java485 public SortedMultiset<E> headMultiset(@Nullable E upperBound, BoundType boundType) {
489 boundType)), header);
493 public SortedMultiset<E> tailMultiset(@Nullable E lowerBound, BoundType boundType) {
497 boundType)), header);
/external/skqp/src/core/
DSkClipStackDevice.cpp78 SkClipStack::BoundsType boundType; in onAsRgnClip() local
81 fClipStack.getBounds(&bounds, &boundType, &isIntersectionOfRects); in onAsRgnClip()
82 if (isIntersectionOfRects && SkClipStack::kNormal_BoundsType == boundType) { in onAsRgnClip()
98 SkClipStack::BoundsType boundType; in onGetClipType() local
101 fClipStack.getBounds(&bounds, &boundType, &isIntersectionOfRects); in onGetClipType()
102 if (isIntersectionOfRects && SkClipStack::kNormal_BoundsType == boundType) { in onGetClipType()
DSkClipStack.cpp678 BoundsType* boundType, in getBounds() argument
680 SkASSERT(canvFiniteBound && boundType); in getBounds()
687 *boundType = kInsideOut_BoundsType; in getBounds()
695 *boundType = element->fFiniteBoundType; in getBounds()
946 SkClipStack::BoundsType boundType; in getConservativeBounds() local
949 this->getBounds(&temp, &boundType, isIntersectionOfRects); in getConservativeBounds()
950 if (SkClipStack::kInsideOut_BoundsType == boundType) { in getConservativeBounds()
/external/skia/src/core/
DSkClipStackDevice.cpp78 SkClipStack::BoundsType boundType; in onAsRgnClip() local
81 fClipStack.getBounds(&bounds, &boundType, &isIntersectionOfRects); in onAsRgnClip()
82 if (isIntersectionOfRects && SkClipStack::kNormal_BoundsType == boundType) { in onAsRgnClip()
98 SkClipStack::BoundsType boundType; in onGetClipType() local
101 fClipStack.getBounds(&bounds, &boundType, &isIntersectionOfRects); in onGetClipType()
102 if (isIntersectionOfRects && SkClipStack::kNormal_BoundsType == boundType) { in onGetClipType()
DSkClipStack.cpp678 BoundsType* boundType, in getBounds() argument
680 SkASSERT(canvFiniteBound && boundType); in getBounds()
687 *boundType = kInsideOut_BoundsType; in getBounds()
695 *boundType = element->fFiniteBoundType; in getBounds()
946 SkClipStack::BoundsType boundType; in getConservativeBounds() local
949 this->getBounds(&temp, &boundType, isIntersectionOfRects); in getConservativeBounds()
950 if (SkClipStack::kInsideOut_BoundsType == boundType) { in getConservativeBounds()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DUnmodifiableSortedMultiset.java92 public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument
94 delegate().headMultiset(upperBound, boundType)); in headMultiset()
106 public SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument
108 delegate().tailMultiset(lowerBound, boundType)); in tailMultiset()
DDescendingMultiset.java67 BoundType boundType) { in headMultiset() argument
68 return forwardMultiset().tailMultiset(toElement, boundType) in headMultiset()
79 BoundType boundType) { in tailMultiset() argument
80 return forwardMultiset().headMultiset(fromElement, boundType) in tailMultiset()
DSortedMultiset.java51 SortedMultiset<E> headMultiset(E upperBound, BoundType boundType); in headMultiset() argument
56 SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType); in tailMultiset() argument
DTreeMultiset.java481 public SortedMultiset<E> headMultiset(@Nullable E upperBound, BoundType boundType) {
485 boundType)), header);
489 public SortedMultiset<E> tailMultiset(@Nullable E lowerBound, BoundType boundType) {
493 boundType)), header);
/external/guice/extensions/testlib/src/com/google/inject/testing/fieldbinder/
DBoundFieldModule.java146 final TypeLiteral<?> boundType; field in BoundFieldModule.BoundFieldInfo
167 this.boundType = getBoundType(); in BoundFieldInfo()
291 Class<?> boundRawType = fieldInfo.boundType.getRawType(); in bindField()
301 AnnotatedBindingBuilder<?> annotatedBinder = binder.bind(fieldInfo.boundType); in bindField()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DCollationKey.java420 public CollationKey getBound(int boundType, int noOfLevels) in getBound() argument
453 byte resultkey[] = new byte[offset + boundType + 1]; in getBound()
455 switch (boundType) { in getBound()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DCollationKey.java409 public CollationKey getBound(int boundType, int noOfLevels) in getBound() argument
442 byte resultkey[] = new byte[offset + boundType + 1]; in getBound()
444 switch (boundType) { in getBound()
/external/icu/icu4c/source/i18n/
Ducol.cpp243 UColBoundMode boundType, in ucol_getBound() argument
278 if(result != NULL && resultLength >= sourceIndex+boundType) { in ucol_getBound()
280 switch(boundType) { in ucol_getBound()
301 return sourceIndex+boundType+1; in ucol_getBound()
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableRangeSetTest.java462 for (BoundType boundType : BoundType.values()) { in testSubRangeSet()
463 rangesBuilder.add(Range.upTo(i, boundType)); in testSubRangeSet()
464 rangesBuilder.add(Range.downTo(i, boundType)); in testSubRangeSet()

12