Searched refs:mHotspotBounds (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleDrawable.java114 private final Rect mHotspotBounds = new Rect(); field in class:RippleDrawable
302 mHotspotBounds.set(bounds);
359 final Rect hotspotBounds = mHotspotBounds;
554 mBackground = new RippleBackground(this, mHotspotBounds, isBounded, mForceSoftware);
587 x = mHotspotBounds.exactCenterX();
588 y = mHotspotBounds.exactCenterY();
592 mRipple = new RippleForeground(this, mHotspotBounds, x, y, isBounded, mForceSoftware);
637 mHotspotBounds.set(left, top, right, bottom);
644 outRect.set(mHotspotBounds);
855 final float x = mHotspotBounds
[all...]
H A DDrawableContainer.java58 private Rect mHotspotBounds; field in class:DrawableContainer
309 if (mHotspotBounds == null) {
310 mHotspotBounds = new Rect(left, top, right, bottom);
312 mHotspotBounds.set(left, top, right, bottom);
322 if (mHotspotBounds != null) {
323 outRect.set(mHotspotBounds);
558 final Rect hotspotBounds = mHotspotBounds;
H A DAdaptiveIconDrawable.java131 private Rect mHotspotBounds; field in class:AdaptiveIconDrawable
624 if (mHotspotBounds == null) {
625 mHotspotBounds = new Rect(left, top, right, bottom);
627 mHotspotBounds.set(left, top, right, bottom);
633 if (mHotspotBounds != null) {
634 outRect.set(mHotspotBounds);
H A DLayerDrawable.java106 private Rect mHotspotBounds; field in class:LayerDrawable
1307 if (mHotspotBounds == null) {
1308 mHotspotBounds = new Rect(left, top, right, bottom);
1310 mHotspotBounds.set(left, top, right, bottom);
1316 if (mHotspotBounds != null) {
1317 outRect.set(mHotspotBounds);

Completed in 1113 milliseconds