HomeSort by relevance Sort by last modified time
    Searched defs:getBounds (Results 1 - 25 of 384) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/reflect/
TypeVariable.java 73 Type[] getBounds();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTouchDelegate.java 22 public Rect getBounds() {
  /external/skia/src/gpu/
GrPath.h 37 const SkRect& getBounds() const { return fBounds; }
  /external/skqp/src/gpu/
GrPath.h 37 const SkRect& getBounds() const { return fBounds; }
  /frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
DrawableRecipientChip.java 30 Rect getBounds();
InvisibleRecipientChip.java 108 public Rect getBounds() {
ReplacementDrawableSpan.java 33 final Rect bounds = getBounds();
47 return getBounds().right;
54 int transY = (bottom - mDrawable.getBounds().bottom + top) / 2;
60 protected Rect getBounds() {
61 return mDrawable.getBounds();
  /packages/apps/UnifiedEmail/src/com/android/mail/graphics/
PageMarginDrawable.java 43 canvas.drawRect(getBounds(), mPaint);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
GenericExceptionsTest.java 59 assertEquals(Arrays.<Type>asList(Throwable.class), Arrays.asList(typeVariable.getBounds()));
67 assertEquals(Arrays.<Type>asList(Throwable.class), Arrays.asList(typeVariable.getBounds()));
75 assertEquals(Arrays.<Type>asList(Exception.class), Arrays.asList(typeVariable.getBounds()));
84 assertEquals(Arrays.<Type>asList(Throwable.class), Arrays.asList(t.getBounds()));
88 assertEquals(Arrays.<Type>asList(Exception.class), Arrays.asList(x.getBounds()));
  /external/skia/src/core/
SkDrawable.cpp 43 draw_bbox(canvas, this->getBounds());
63 SkRect SkDrawable::getBounds() {
78 const SkRect bounds = this->getBounds();
SkAAClip.h 30 const SkIRect& getBounds() const { return fBounds; }
33 // If true, getBounds() can be used in place of this clip.
109 fAAClipBounds = aaclip->getBounds();
  /external/skqp/src/core/
SkDrawable.cpp 43 draw_bbox(canvas, this->getBounds());
63 SkRect SkDrawable::getBounds() {
78 const SkRect bounds = this->getBounds();
SkAAClip.h 30 const SkIRect& getBounds() const { return fBounds; }
33 // If true, getBounds() can be used in place of this clip.
109 fAAClipBounds = aaclip->getBounds();
  /frameworks/base/libs/hwui/
RevealClip.h 44 void getBounds(Rect* outBounds) const {
  /frameworks/minikin/libs/minikin/
MeasuredText.cpp 66 MinikinRect MeasuredText::getBounds(const U16StringPiece& textBuf, const Range& range) {
75 run->getBounds(textBuf, Range::intersection(runRange, range), layoutPieces);
  /cts/tests/tests/preference2/src/android/preference2/cts/
DialogPreferenceTest.java 59 assertEquals(drawableExp.getBounds(), drawable.getBounds());
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/declarations/
ResolvedTypeParameterDeclaration.java 84 public List<Bound> getBounds() {
171 List<Bound> getBounds();
177 for (Bound b : getBounds()) {
189 for (Bound b : getBounds()) {
203 for (Bound b : getBounds()) {
217 for (Bound b : getBounds()) {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionTypeParameter.java 112 public List<Bound> getBounds() {
113 return Arrays.stream(typeVariable.getBounds()).map((refB) -> Bound.extendsBound(ReflectionFactory.typeUsageFor(refB, typeSolver))).collect(Collectors.toList());
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleComponent.java 85 public void getBounds(Rect bounds) {
  /external/guice/core/test/com/google/inject/
TypeLiteralTest.java 159 assertEquals(ImmutableList.<Type>of(Object.class), ImmutableList.copyOf(aTv.getBounds()));
174 assertEquals(ImmutableList.<Type>of(Runnable.class), ImmutableList.copyOf(cTv.getBounds()));
190 ImmutableList.copyOf(bTv.getBounds()));
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistTypeParameter.java 96 public List<ResolvedTypeParameterDeclaration.Bound> getBounds() {
  /frameworks/base/core/java/android/hardware/camera2/params/
Face.java 147 public Rect getBounds() {
199 * the same space as the ones for {@link #getBounds}. This is an
215 * in the same space as the ones for {@link #getBounds}.This is an
231 * the same space as the ones for {@link #getBounds}. This is an optional
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
FullscreenOverdrawActivity.java 52 canvas.drawRect(getBounds(), paint);
  /frameworks/minikin/include/minikin/
Layout.h 130 void getBounds(MinikinRect* rect) const;
131 const MinikinRect& getBounds() const { return mBounds; }
  /frameworks/native/libs/ui/include/ui/
Region.h 48 inline bool isEmpty() const { return getBounds().isEmpty(); }
51 inline Rect getBounds() const { return mStorage[mStorage.size() - 1]; }
52 inline Rect bounds() const { return getBounds(); }

Completed in 743 milliseconds

1 2 3 4 5 6 7 8 91011>>