HomeSort by relevance Sort by last modified time
    Searched refs:setHotspotBounds (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/support/compat/api21/android/support/v4/graphics/drawable/
DrawableCompatLollipop.java 42 public static void setHotspotBounds(Drawable drawable, int left, int top,
44 drawable.setHotspotBounds( left, top, right, bottom);
DrawableWrapperLollipop.java 48 public void setHotspotBounds(int left, int top, int right, int bottom) {
49 mDrawable.setHotspotBounds(left, top, right, bottom);
  /frameworks/support/compat/java/android/support/v4/graphics/drawable/
DrawableCompat.java 47 void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom);
85 public void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) {
214 public void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) {
215 DrawableCompatLollipop.setHotspotBounds(drawable, left, top, right, bottom);
374 public static void setHotspotBounds(@NonNull Drawable drawable, int left, int top,
376 IMPL.setHotspotBounds(drawable, left, top, right, bottom);
  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
VectorDrawableCommon.java 94 public void setHotspotBounds(int left, int top, int right, int bottom) {
96 DrawableCompat.setHotspotBounds(mDelegateDrawable, left, top, right, bottom);
  /frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
DrawableWrapper.java 210 public void setHotspotBounds(int left, int top, int right, int bottom) {
211 DrawableCompat.setHotspotBounds(mDrawable, left, top, right, bottom);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ListViewCompat.java 399 public void setHotspotBounds(int left, int top, int right, int bottom) {
401 super.setHotspotBounds(left, top, right, bottom);
ActionMenuPresenter.java 717 DrawableCompat.setHotspotBounds(bg, centerX - halfEdge, centerY - halfEdge,
SwitchCompat.java     [all...]
  /prebuilts/sdk/current/support/graphics/drawable/libs/
android-support-animatedvectordrawable.jar 
android-support-vectordrawable.jar 
  /frameworks/base/graphics/java/android/graphics/drawable/
DrawableWrapper.java 258 public void setHotspotBounds(int left, int top, int right, int bottom) {
260 mDrawable.setHotspotBounds(left, top, right, bottom);
DrawableContainer.java 297 public void setHotspotBounds(int left, int top, int right, int bottom) {
305 mCurrDrawable.setHotspotBounds(left, top, right, bottom);
542 d.setHotspotBounds(hotspotBounds.left, hotspotBounds.top,
    [all...]
Drawable.java 676 public void setHotspotBounds(int left, int top, int right, int bottom) {}
682 * @see #setHotspotBounds(int, int, int, int)
    [all...]
RippleDrawable.java 629 public void setHotspotBounds(int left, int top, int right, int bottom) {
    [all...]
AnimatedVectorDrawable.java 396 public void setHotspotBounds(int left, int top, int right, int bottom) {
397 mAnimatedVectorState.mVectorDrawable.setHotspotBounds(left, top, right, bottom);
    [all...]
LayerDrawable.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSTileBaseView.java 89 mRipple.setHotspotBounds(cx - rad, cy - rad, cx + rad, cy + rad);
  /frameworks/base/core/java/android/widget/
CheckedTextView.java 416 background.setHotspotBounds(mScrollX + left, top, mScrollX + right, bottom);
CompoundButton.java 428 background.setHotspotBounds(left, top, right, bottom);
AbsSeekBar.java 636 background.setHotspotBounds(left + offsetX, top + offsetY,
    [all...]
ActionMenuPresenter.java     [all...]
Switch.java     [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DrawableContainerTest.java 235 mDrawableContainer.setHotspotBounds(bounds.left, bounds.top, bounds.right, bounds.bottom);
254 mDrawableContainer.setHotspotBounds(bounds.left, bounds.top, bounds.right, bounds.bottom);
    [all...]
DrawableTest.java 585 mockDrawable.setHotspotBounds(10, 15, 100, 150);
LayerDrawableTest.java 537 layerDrawable.setHotspotBounds(bounds.left, bounds.top, bounds.right, bounds.bottom);
550 layerDrawable.setHotspotBounds(bounds.left, bounds.top, bounds.right, bounds.bottom);
    [all...]

Completed in 514 milliseconds

1 2