Searched defs:mHotspotBounds (Results 1 - 3 of 3) sorted by last modified time

/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java58 private Rect mHotspotBounds; field in class:DrawableContainer
293 if (mHotspotBounds == null) {
294 mHotspotBounds = new Rect(left, top, bottom, right);
296 mHotspotBounds.set(left, top, bottom, right);
307 if (mHotspotBounds != null) {
308 outRect.set(mHotspotBounds);
512 final Rect hotspotBounds = mHotspotBounds;
H A DLayerDrawable.java85 private Rect mHotspotBounds; field in class:LayerDrawable
612 if (mHotspotBounds == null) {
613 mHotspotBounds = new Rect(left, top, right, bottom);
615 mHotspotBounds.set(left, top, right, bottom);
622 if (mHotspotBounds != null) {
623 outRect.set(mHotspotBounds);
H A DRippleDrawable.java114 private final Rect mHotspotBounds = new Rect(); field in class:RippleDrawable
311 mHotspotBounds.set(bounds);
493 mBackground = new RippleBackground(this, mHotspotBounds);
526 x = mHotspotBounds.exactCenterX();
527 y = mHotspotBounds.exactCenterY();
529 mRipple = new Ripple(this, mHotspotBounds, x, y);
575 mHotspotBounds.set(left, top, right, bottom);
583 outRect.set(mHotspotBounds);
791 final float x = mHotspotBounds.exactCenterX();
792 final float y = mHotspotBounds
[all...]

Completed in 44 milliseconds