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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DAnimateableViewBounds.java37 protected Rect mClipBounds = new Rect(); field in class:AnimateableViewBounds
114 mClipBounds.set(Math.max(0, mClipRect.left), Math.max(0, mClipRect.top),
117 if (!mLastClipBounds.equals(mClipBounds)) {
118 mSourceView.setClipBounds(mClipBounds);
121 mLastClipBounds.set(mClipBounds);
H A DTaskView.java689 Rect clipBounds = new Rect(mViewBounds.mClipBounds);
/frameworks/base/libs/hwui/
H A DRenderProperties.h198 return RP_SET(mPrimitiveFields.mClipBounds, clipBounds) || ret;
548 return mPrimitiveFields.mClipBounds;
555 outRect->doIntersect(mPrimitiveFields.mClipBounds);
558 outRect->set(mPrimitiveFields.mClipBounds);
649 Rect mClipBounds; member in struct:android::uirenderer::RenderProperties::PrimitiveFields
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java60 private final Rect mClipBounds = new Rect(); field in class:NotificationContentView
714 mClipBounds.set(0, top, getWidth(), bottom);
715 setClipBounds(mClipBounds);
/frameworks/base/core/java/android/view/
H A DViewGroup.java6028 if ((forceParentCheck || rectIsVisible) && mClipBounds != null) {
6030 rectIsVisible = rect.intersect(mClipBounds.left, mClipBounds.top, mClipBounds.right,
6031 mClipBounds.bottom);
H A DView.java3783 Rect mClipBounds = null; field in class: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)
[all...]

Completed in 1952 milliseconds