/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 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 …]
|
D | DescendingImmutableSortedMultiset.java | 68 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()
|
D | EmptyImmutableSortedMultiset.java | 73 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()
|
D | UnmodifiableSortedMultiset.java | 94 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()
|
D | RegularImmutableSortedMultiset.java | 86 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()
|
D | DescendingMultiset.java | 67 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()
|
D | ForwardingSortedMultiset.java | 197 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()
|
D | SortedMultiset.java | 121 SortedMultiset<E> headMultiset(E upperBound, BoundType boundType); in headMultiset() argument 149 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 | Range.java | 256 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()
|
D | ImmutableSortedMultiset.java | 368 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
|
D | TreeMultiset.java | 485 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/ |
D | SkClipStackDevice.cpp | 78 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()
|
D | SkClipStack.cpp | 678 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/ |
D | SkClipStackDevice.cpp | 78 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()
|
D | SkClipStack.cpp | 678 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/ |
D | UnmodifiableSortedMultiset.java | 92 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()
|
D | DescendingMultiset.java | 67 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()
|
D | SortedMultiset.java | 51 SortedMultiset<E> headMultiset(E upperBound, BoundType boundType); in headMultiset() argument 56 SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType); in tailMultiset() argument
|
D | TreeMultiset.java | 481 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/ |
D | BoundFieldModule.java | 146 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/ |
D | CollationKey.java | 420 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/ |
D | CollationKey.java | 409 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/ |
D | ucol.cpp | 243 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/ |
D | ImmutableRangeSetTest.java | 462 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()
|