HomeSort by relevance Sort by last modified time
    Searched defs:getBounds (Results 1 - 25 of 313) 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/skia/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();
VisibleRecipientChip.java 94 public Rect getBounds() {
95 return super.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();
SkRasterClip.cpp 83 this->op(rrect.getBounds(), ctm, devBounds, op, doAA);
96 SkRect bounds = path.getBounds();
106 this->op(rgn.getBounds(), op);
121 fBounds = result.getBounds();
186 const SkIRect& SkRasterClip::getBounds() const {
187 return fIsBW ? fBW.getBounds() : fAA.getBounds();
281 base.setRect(this->getBounds());
438 fBW.setRect(fAA.getBounds());
486 fBWRgn.setRect(aaclip->getBounds());
    [all...]
  /frameworks/base/libs/hwui/
RevealClip.h 50 void getBounds(Rect* outBounds) const {
  /cts/tests/tests/preference2/src/android/preference2/cts/
DialogPreferenceTest.java 59 assertEquals(drawableExp.getBounds(), drawable.getBounds());
  /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()));
  /cts/hostsidetests/services/activityandwindowmanager/activitymanager/src/android/server/cts/
ActivityManagerFreeformStackTests.java 61 mAmWmState.getAmState().getTaskByActivityName(TEST_ACTIVITY).getBounds());
82 task.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/native/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(); }
  /libcore/luni/src/main/java/libcore/reflect/
TypeVariableImpl.java 119 public Type[] getBounds() {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
WindowLocationUtil.java 121 unclippedBitmapRect.set(drawable.getBounds());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestDragElement.java 120 public @NonNull Rect getBounds() {
140 return mParent != null ? mParent.getBounds() : null;
156 return node.getBounds().equals(getBounds());
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 153 assertEquals(1, mRegion.getBounds().left);
154 assertEquals(2, mRegion.getBounds().top);
155 assertEquals(3, mRegion.getBounds().right);
156 assertEquals(4, mRegion.getBounds().bottom);
163 assertEquals(1, mRegion.getBounds().left);
164 assertEquals(2, mRegion.getBounds().top);
165 assertEquals(3, mRegion.getBounds().right);
166 assertEquals(4, mRegion.getBounds().bottom);
172 assertEquals(1, mRegion.getBounds().left);
173 assertEquals(2, mRegion.getBounds().top)
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/
UiElement.java 129 Rect getBounds();
  /external/droiddriver/src/io/appium/droiddriver/uiautomation/
UiAutomationElement.java 96 put(attribs, Attribute.BOUNDS, getBounds(node));
129 private Rect getBounds(AccessibilityNodeInfo node) {
139 Rect foundBounds = getBounds();
142 if (!foundBounds.intersect(parent.getBounds())) {
  /external/guava/guava-tests/test/com/google/common/reflect/
TypeVisitorTest.java 88 visit(t.getBounds());

Completed in 2425 milliseconds

1 2 3 4 5 6 7 8 91011>>