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.java689 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.java3783 Rect mClipBounds = null; field in View
18607 if (clipBounds == mClipBounds
18608 || (clipBounds != null && clipBounds.equals(mClipBounds))) {
18612 if (mClipBounds == null) {
18613 mClipBounds = new Rect(clipBounds);
18615 mClipBounds.set(clipBounds);
18618 mClipBounds = null;
18620 mRenderNode.setClipBounds(mClipBounds);
18631 return (mClipBounds != null) ? new Rect(mClipBounds) : null;
18645 if (mClipBounds != null) {
[all …]
DViewGroup.java6028 if ((forceParentCheck || rectIsVisible) && mClipBounds != null) { in getChildVisibleRect()
6030 rectIsVisible = rect.intersect(mClipBounds.left, mClipBounds.top, mClipBounds.right, in getChildVisibleRect()
6031 mClipBounds.bottom); in getChildVisibleRect()