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

1 2 3 4 5 6 7 8 910

  /external/skia/src/pathops/
SkPathOpsRect.cpp 13 void SkDRect::setBounds(const SkDQuad& curve, const SkDQuad& sub, double startT, double endT) {
30 void SkDRect::setBounds(const SkDConic& curve, const SkDConic& sub, double startT, double endT) {
47 void SkDRect::setBounds(const SkDCubic& curve, const SkDCubic& sub, double startT, double endT) {
SkPathOpsRect.h 50 void setBounds(const SkDConic& curve) {
51 setBounds(curve, curve, 0, 1);
54 void setBounds(const SkDConic& curve, const SkDConic& sub, double tStart, double tEnd);
56 void setBounds(const SkDCubic& curve) {
57 setBounds(curve, curve, 0, 1);
60 void setBounds(const SkDCubic& curve, const SkDCubic& sub, double tStart, double tEnd);
62 void setBounds(const SkDQuad& curve) {
63 setBounds(curve, curve, 0, 1);
66 void setBounds(const SkDQuad& curve, const SkDQuad& sub, double tStart, double tEnd);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ThinPatchesActivity.java 84 mPatch3.setBounds(left, top, left + height, top + width);
89 mPatch1.setBounds(left, top, left + width, top + height);
95 mPatch2.setBounds(left, top, left + width, top + height);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
Utilities.java 13 d.setBounds(left, top, right, bottom);
  /packages/apps/Settings/src/com/android/settings/widget/
ChartAxis.java 29 public boolean setBounds(long min, long max);
InvertedChartAxis.java 34 public boolean setBounds(long min, long max) {
35 return mWrapped.setBounds(min, max);
ChartGridView.java 96 void setBounds(long start, long end) {
117 secondary.setBounds(0, (int) y, width, bottom);
130 primary.setBounds((int) x, 0, right, height);
135 mBorder.setBounds(0, 0, width, height);
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/util/
DividerItemDecoration.java 47 mDrawable.setBounds(left, top, right, bottom);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyEditor.java 66 * {@link #setBounds(Rectangle)} and {@link #deactivate(boolean)} invocation. Some editors
77 public void setBounds(Rectangle bounds) {
AbstractComboBoxPropertyEditor.java 121 public void setBounds(Rectangle bounds) {
122 m_combo.setBounds(bounds);
  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
SwingHelper.java 53 cmp.setBounds(loc.x, loc.y, cmpSize.width, cmpSize.height);
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 53 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
  /frameworks/base/core/java/com/android/internal/widget/
BackgroundFallback.java 93 mBackgroundFallback.setBounds(0, 0, width, top);
97 mBackgroundFallback.setBounds(0, top, left, height);
101 mBackgroundFallback.setBounds(right, top, width, height);
105 mBackgroundFallback.setBounds(left, bottom, right, height);
  /packages/apps/Camera2/src/com/android/camera/ui/
ProgressOverlay.java 57 public void setBounds(RectF area) {
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
SquaringDrawable.java 29 public void setBounds(int left, int top, int right, int bottom) {
30 super.setBounds(left, top, right, bottom);
31 wrapped.setBounds(left, top, right, bottom);
35 public void setBounds(Rect bounds) {
36 super.setBounds(bounds);
37 wrapped.setBounds(bounds);
  /packages/apps/Launcher3/src/com/android/launcher3/discovery/
RatingView.java 81 star.setBounds(x, padding, x + starWidth, padding + starWidth);
90 star.setBounds(x, padding, x + starWidth, padding + starWidth);
  /packages/apps/Launcher3/src/com/android/launcher3/util/
TransformingTouchDelegate.java 51 public void setBounds(int left, int top, int right, int bottom) {
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
DrawableTileSource.java 80 mDrawable.setBounds(new Rect(0, 0, (int) width, (int) height));
97 mDrawable.setBounds(bounds);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestDragElement.java 57 public TestDragElement setBounds(Rect bounds) {
92 return create(fqn).setBounds(bounds);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImpl.java 75 setBounds(control, controlX, y, controlWidth, height);
167 private static void setBounds(Control control, int newX, int newY, int newWidth, int newHeight) {
201 control.setBounds(newX, newY, newWidth, newHeight);
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
PieItem.java 165 public void setBounds(int left, int top, int right, int bottom) {
166 mDrawable.setBounds(left, top, right, bottom);
175 d.setBounds(mDrawable.getBounds());
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
PieItem.java 187 public void setBounds(int left, int top, int right, int bottom) {
188 mDrawable.setBounds(left, top, right, bottom);
197 d.setBounds(mDrawable.getBounds());
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeEffect.java 324 mGlow.setBounds(glowLeft, 0, mWidth - glowLeft, glowBottom);
327 mGlow.setBounds(0, 0, mWidth, glowBottom);
338 mEdge.setBounds(edgeLeft, 0, mWidth - edgeLeft, edgeBottom);
341 mEdge.setBounds(0, 0, mWidth, edgeBottom);
427 public void setBounds(int left, int top, int right, int bottom) {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorFilters.java 55 curr.setBounds(x, y, x + curr.getIntrinsicWidth(), y + h);
65 mDrawable.setBounds(0, 0, 150, 48);
ShapeDrawable1.java 129 dr.setBounds(x, y, x + width, y + height);

Completed in 924 milliseconds

1 2 3 4 5 6 7 8 910