/external/guava/guava/src/com/google/common/collect/ |
D | Cut.java | 49 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 197 @Override Cut<Comparable<?>> withLowerBoundType(BoundType boundType, in withLowerBoundType() argument 201 @Override Cut<Comparable<?>> withUpperBoundType(BoundType boundType, in withUpperBoundType() argument 246 @Override Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) { in withLowerBoundType() argument 247 switch (boundType) { in withLowerBoundType() 257 @Override Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) { in withUpperBoundType() argument 258 switch (boundType) { in withUpperBoundType() [all …]
|
D | EmptyImmutableSortedMultiset.java | 74 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument 76 checkNotNull(boundType); in headMultiset() 81 public ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument 83 checkNotNull(boundType); in tailMultiset()
|
D | DescendingImmutableSortedMultiset.java | 73 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument 74 return forward.tailMultiset(upperBound, boundType).descendingMultiset(); in headMultiset() 78 public ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument 79 return forward.headMultiset(lowerBound, boundType).descendingMultiset(); in tailMultiset()
|
D | SortedMultisets.java | 122 BoundType boundType) { in headMultiset() argument 123 return forwardMultiset().tailMultiset(toElement, boundType) in headMultiset() 134 BoundType boundType) { in tailMultiset() argument 135 return forwardMultiset().headMultiset(fromElement, boundType) in tailMultiset()
|
D | Ranges.java | 168 C endpoint, BoundType boundType) { in upTo() argument 169 switch (boundType) { in upTo() 200 C endpoint, BoundType boundType) { in downTo() argument 201 switch (boundType) { in downTo()
|
D | RegularImmutableSortedMultiset.java | 153 public ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { 155 switch (boundType) { 171 public ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { 173 switch (boundType) {
|
D | SortedMultiset.java | 104 SortedMultiset<E> headMultiset(E upperBound, BoundType boundType); in headMultiset() argument 132 SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType); in tailMultiset() argument
|
D | GeneralRange.java | 68 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()
|
D | TreeMultiset.java | 347 public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument 350 range.intersect(GeneralRange.upTo(comparator, upperBound, boundType)), rootReference); in headMultiset() 354 public SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument 357 range.intersect(GeneralRange.downTo(comparator, lowerBound, boundType)), rootReference); in tailMultiset()
|
D | Multisets.java | 260 public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument 262 delegate().headMultiset(upperBound, boundType)); in headMultiset() 274 public SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument 276 delegate().tailMultiset(lowerBound, boundType)); in tailMultiset()
|
D | ImmutableSortedMultiset.java | 400 public abstract ImmutableSortedMultiset<E> headMultiset(E upperBound, BoundType boundType); in headMultiset() argument 409 public abstract ImmutableSortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType); in tailMultiset() argument
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkClipStack.cpp | 598 BoundsType* boundType, in getBounds() argument 600 SkASSERT(canvFiniteBound && boundType); in getBounds() 607 *boundType = kInsideOut_BoundsType; in getBounds() 615 *boundType = element->fFiniteBoundType; in getBounds() 815 SkClipStack::BoundsType boundType; in getConservativeBounds() local 818 this->getBounds(&temp, &boundType, isIntersectionOfRects); in getConservativeBounds() 819 if (SkClipStack::kInsideOut_BoundsType == boundType) { in getConservativeBounds()
|
/external/skia/src/core/ |
D | SkClipStack.cpp | 598 BoundsType* boundType, in getBounds() argument 600 SkASSERT(NULL != canvFiniteBound && NULL != boundType); in getBounds() 607 *boundType = kInsideOut_BoundsType; in getBounds() 615 *boundType = element->fFiniteBoundType; in getBounds() 815 SkClipStack::BoundsType boundType; in getConservativeBounds() local 818 this->getBounds(&temp, &boundType, isIntersectionOfRects); in getConservativeBounds() 819 if (SkClipStack::kInsideOut_BoundsType == boundType) { in getConservativeBounds()
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | TreeMultiset.java | 343 public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) { in headMultiset() argument 346 range.intersect(GeneralRange.upTo(comparator, upperBound, boundType)), rootReference); in headMultiset() 350 public SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType) { in tailMultiset() argument 353 range.intersect(GeneralRange.downTo(comparator, lowerBound, boundType)), rootReference); in tailMultiset()
|
/external/icu/icu4c/source/i18n/ |
D | ucol.cpp | 240 UColBoundMode boundType, in ucol_getBound() argument 275 if(result != NULL && resultLength >= sourceIndex+boundType) { in ucol_getBound() 277 switch(boundType) { in ucol_getBound() 298 return sourceIndex+boundType+1; in ucol_getBound()
|
D | coll.cpp | 642 UColBoundMode boundType, in getBound() argument 648 … return ucol_getBound(source, sourceLength, boundType, noOfLevels, result, resultLength, &status); in getBound()
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | coll.cpp | 573 UColBoundMode boundType, in getBound() argument 579 … return ucol_getBound(source, sourceLength, boundType, noOfLevels, result, resultLength, &status); in getBound()
|
D | ucol.cpp | 6063 UColBoundMode boundType, in ucol_getBound() argument 6098 if(result != NULL && resultLength >= sourceIndex+boundType) { in ucol_getBound() 6100 switch(boundType) { in ucol_getBound() 6121 return sourceIndex+boundType+1; in ucol_getBound()
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
D | coll.h | 1018 UColBoundMode boundType,
|
D | ucol.h | 1065 UColBoundMode boundType,
|
/external/icu/icu4c/source/i18n/unicode/ |
D | coll.h | 1052 UColBoundMode boundType,
|
D | ucol.h | 1081 UColBoundMode boundType,
|
/external/chromium_org/third_party/skia/include/core/ |
D | SkClipStack.h | 309 BoundsType* boundType,
|
/external/skia/include/core/ |
D | SkClipStack.h | 309 BoundsType* boundType,
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 1717 QualType boundType = Expr::findBoundMemberType(C->getCallee()); in VisitCallExpr() local 1721 if (!boundType.isNull()) calleeType = boundType; in VisitCallExpr()
|