Searched refs:setBounds (Results 1 - 25 of 48) sorted by relevance

12

/frameworks/base/services/java/com/android/server/status/
H A DFixedSizeDrawable.java43 public void setBounds(Rect bounds) { method in class:FixedSizeDrawable
44 mDrawable.setBounds(mLeft, mTop, mRight, mBottom);
47 public void setBounds(int l, int t, int r, int b) { method in class:FixedSizeDrawable
48 mDrawable.setBounds(mLeft, mTop, mRight, mBottom);
/frameworks/base/awt/java/awt/
H A DRectangle.java70 setBounds(0, 0, 0, 0);
83 setBounds(p.x, p.y, 0, 0);
99 setBounds(p.x, p.y, d.width, d.height);
116 setBounds(x, y, width, height);
129 setBounds(0, 0, width, height);
141 setBounds(r.x, r.y, r.width, r.height);
145 * public Rectangle(Dimension d) { setBounds(0, 0, d.width, d.height); }
308 setBounds(x1, y1, x2 - x1, y2 - y1);
322 setBounds(x, y, width, height);
337 * @deprecated use setBounds(in
381 public void setBounds(int x, int y, int width, int height) { method in class:Rectangle
395 public void setBounds(Rectangle r) { method in class:Rectangle
[all...]
H A DComponentBehavior.java33 void setBounds(int x, int y, int w, int h, int bMask); method in interface:ComponentBehavior
/frameworks/base/core/java/android/text/style/
H A DImageSpan.java68 mDrawable.setBounds(0, 0, width > 0 ? width : 0, height > 0 ? height : 0);
140 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(),
149 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(),
H A DDrawableMarginSpan.java57 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
/frameworks/base/awt/org/apache/harmony/awt/wtk/
H A DNativeWindow.java72 void setBounds(int x, int y, int w, int h, int boundsMask); method in interface:NativeWindow
/frameworks/base/awt/org/apache/harmony/awt/
H A DClipRegion.java34 setBounds(clip.getBounds());
/frameworks/base/core/java/android/widget/
H A DAbsSeekBar.java205 d.setBounds(0, gapForCenteringTrack,
212 d.setBounds(0, 0, w - mPaddingRight - mPaddingLeft, h - mPaddingBottom
247 thumb.setBounds(thumbPos, topBound, thumbPos + thumbWidth, bottomBound);
H A DAnalogClock.java189 dial.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
199 hourHand.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
211 minuteHand.setBounds(x - (w / 2), y - (h / 2), x + (w / 2), y + (h / 2));
H A DScrollBarDrawable.java157 track.setBounds(bounds);
178 if (changed) thumb.setBounds(thumbRect);
182 if (changed) thumb.setBounds(thumbRect);
H A DFastScroller.java117 mThumbDrawable.setBounds(viewWidth - mThumbW, 0, viewWidth, mThumbH);
187 mThumbDrawable.setBounds(left, 0, viewWidth, mThumbH);
214 mThumbDrawable.setBounds(w - mThumbW, 0, w, mThumbH);
222 mOverlayDrawable.setBounds((int) pos.left, (int) pos.top,
H A DCheckedTextView.java169 checkMarkDrawable.setBounds(
H A DTabWidget.java296 leftStrip.setBounds(Math.min(0, bounds.left - leftStrip.getIntrinsicWidth()),
298 rightStrip.setBounds(bounds.right, myHeight - rightStrip.getIntrinsicHeight(),
H A DCompoundButton.java249 buttonDrawable.setBounds(0, y, buttonDrawable.getIntrinsicWidth(), y + height);
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DIconUtilities.java100 result.setBounds(0, 0, mIconTextureWidth, mIconTextureHeight);
166 icon.setBounds(left, top, left+width, top+height);
168 icon.setBounds(mOldBounds);
H A DRecentApplicationsBackground.java110 background.setBounds(left, top, right, bottom);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java47 * <li> The {@link #setBounds} method <var>must</var> be called to tell the
110 * Draw in its bounds (set via setBounds) respecting optional effects such
121 public void setBounds(int left, int top, int right, int bottom) { method in class:Drawable
139 public void setBounds(Rect bounds) { method in class:Drawable
140 setBounds(bounds.left, bounds.top, bounds.right, bounds.bottom);
H A DDrawableContainer.java106 mCurrDrawable.setBounds(bounds);
218 d.setBounds(getBounds());
H A DClipDrawable.java181 mClipState.mDrawable.setBounds(bounds);
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java302 // the call to setBounds() that follows would
308 icon.setBounds(x, y, x + width, y + height);
310 icon.setBounds(mOldBounds);
320 icon.setBounds(x, y, x + iconWidth, y + iconHeight);
322 icon.setBounds(mOldBounds);
H A DWallpaperManager.java99 setBounds(0, 0, mWidth, mHeight);
113 public void setBounds(int left, int top, int right, int bottom) { method in class:WallpaperManager.FastBitmapDrawable
119 public void setBounds(Rect bounds) { method in class:WallpaperManager.FastBitmapDrawable
121 super.setBounds(bounds);
/frameworks/base/core/java/android/webkit/
H A DViewManager.java48 void setBounds(int x, int y, int width, int height) { method in class:ViewManager.ChildView
59 setBounds(x, y, width, height);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java176 icon.setBounds(0, 0, icon.getIntrinsicWidth(), icon.getIntrinsicHeight());
282 mIcon.setBounds(mPositionIconOutput);
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboard.java77 mShiftLockPreviewIcon.setBounds(0, 0,
134 mEnterKey.iconPreview.setBounds(0, 0,
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
H A DTransformTestActivity.java57 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicWidth());

Completed in 3837 milliseconds

12