Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DAnimateableViewBounds.java37 protected 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.java693 Rect clipBounds = new Rect(mViewBounds.mClipBounds); in onLongClick()
/frameworks/base/libs/hwui/
DRenderProperties.h198 return RP_SET(mPrimitiveFields.mClipBounds, clipBounds) || ret; in setClipBounds()
548 return mPrimitiveFields.mClipBounds; in getClipBounds()
555 outRect->doIntersect(mPrimitiveFields.mClipBounds); in getClippingRectForFlags()
558 outRect->set(mPrimitiveFields.mClipBounds); in getClippingRectForFlags()
649 Rect mClipBounds; member
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationContentView.java60 private final Rect mClipBounds = new Rect(); field in NotificationContentView
714 mClipBounds.set(0, top, getWidth(), bottom); in updateClipping()
715 setClipBounds(mClipBounds); in updateClipping()
/frameworks/base/core/java/android/view/
DView.java3821 Rect mClipBounds = null; field in View
18680 if (clipBounds == mClipBounds
18681 || (clipBounds != null && clipBounds.equals(mClipBounds))) {
18685 if (mClipBounds == null) {
18686 mClipBounds = new Rect(clipBounds);
18688 mClipBounds.set(clipBounds);
18691 mClipBounds = null;
18693 mRenderNode.setClipBounds(mClipBounds);
18704 return (mClipBounds != null) ? new Rect(mClipBounds) : null;
18718 if (mClipBounds != null) {
[all …]
DViewGroup.java6050 if ((forceParentCheck || rectIsVisible) && mClipBounds != null) { in getChildVisibleRect()
6052 rectIsVisible = rect.intersect(mClipBounds.left, mClipBounds.top, mClipBounds.right, in getChildVisibleRect()
6053 mClipBounds.bottom); in getChildVisibleRect()