Home
last modified time | relevance | path

Searched refs:mClipBounds (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DAnimateableViewBounds.java37 Rect mClipBounds = new Rect(); field in AnimateableViewBounds
114 mClipBounds.set(Math.max(0, mClipRect.left), Math.max(0, mClipRect.top), in updateClipBounds()
117 if (!mLastClipBounds.equals(mClipBounds)) { in updateClipBounds()
118 mSourceView.setClipBounds(mClipBounds); in updateClipBounds()
121 mLastClipBounds.set(mClipBounds); in updateClipBounds()
DTaskView.java670 Rect clipBounds = new Rect(mViewBounds.mClipBounds); in onLongClick()
/frameworks/base/libs/hwui/
DRenderProperties.h196 return RP_SET(mPrimitiveFields.mClipBounds, clipBounds) || ret; in setClipBounds()
546 return mPrimitiveFields.mClipBounds; in getClipBounds()
553 outRect->doIntersect(mPrimitiveFields.mClipBounds); in getClippingRectForFlags()
556 outRect->set(mPrimitiveFields.mClipBounds); in getClippingRectForFlags()
647 Rect mClipBounds; member
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarHeaderView.java120 private final Rect mClipBounds = new Rect(); field in StatusBarHeaderView
187 outline.setRect(mClipBounds); in onFinishInflate()
500 mClipBounds.set(getPaddingLeft(), 0, getWidth() - getPaddingRight(), (int) height); in setClipping()
501 setClipBounds(mClipBounds); in setClipping()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationContentView.java57 private final Rect mClipBounds = new Rect(); field in NotificationContentView
584 mClipBounds.set(0, mClipTopAmount, getWidth(), mContentHeight); in updateClipping()
585 setClipBounds(mClipBounds); in updateClipping()
/frameworks/base/core/java/android/view/
DView.java3315 Rect mClipBounds = null; field in View
16593 if (clipBounds == mClipBounds in setClipBounds()
16594 || (clipBounds != null && clipBounds.equals(mClipBounds))) { in setClipBounds()
16598 if (mClipBounds == null) { in setClipBounds()
16599 mClipBounds = new Rect(clipBounds); in setClipBounds()
16601 mClipBounds.set(clipBounds); in setClipBounds()
16604 mClipBounds = null; in setClipBounds()
16606 mRenderNode.setClipBounds(mClipBounds); in setClipBounds()
16617 return (mClipBounds != null) ? new Rect(mClipBounds) : null; in getClipBounds()
16631 if (mClipBounds != null) { in getClipBounds()
[all …]
DViewGroup.java5587 if ((forceParentCheck || rectIsVisible) && mClipBounds != null) { in getChildVisibleRect()
5589 rectIsVisible = rect.intersect(mClipBounds.left, mClipBounds.top, mClipBounds.right, in getChildVisibleRect()
5590 mClipBounds.bottom); in getChildVisibleRect()