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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DAnimateableViewBounds.java37 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.java670 Rect clipBounds = new Rect(mViewBounds.mClipBounds);
/frameworks/base/libs/hwui/
H A DRenderProperties.h196 return RP_SET(mPrimitiveFields.mClipBounds, clipBounds) || ret;
546 return mPrimitiveFields.mClipBounds;
553 outRect->doIntersect(mPrimitiveFields.mClipBounds);
556 outRect->set(mPrimitiveFields.mClipBounds);
647 Rect mClipBounds; member in struct:android::uirenderer::RenderProperties::PrimitiveFields
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarHeaderView.java120 private final Rect mClipBounds = new Rect(); field in class:StatusBarHeaderView
187 outline.setRect(mClipBounds);
500 mClipBounds.set(getPaddingLeft(), 0, getWidth() - getPaddingRight(), (int) height);
501 setClipBounds(mClipBounds);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java57 private final Rect mClipBounds = new Rect(); field in class:NotificationContentView
584 mClipBounds.set(0, mClipTopAmount, getWidth(), mContentHeight);
585 setClipBounds(mClipBounds);
/frameworks/base/core/java/android/view/
H A DView.java3315 Rect mClipBounds = null; field in class:View
16593 if (clipBounds == mClipBounds
16594 || (clipBounds != null && clipBounds.equals(mClipBounds))) {
16598 if (mClipBounds == null) {
16599 mClipBounds = new Rect(clipBounds);
16601 mClipBounds.set(clipBounds);
16604 mClipBounds = null;
16606 mRenderNode.setClipBounds(mClipBounds);
16617 return (mClipBounds != null) ? new Rect(mClipBounds)
[all...]
H A DViewGroup.java5587 if ((forceParentCheck || rectIsVisible) && mClipBounds != null) {
5589 rectIsVisible = rect.intersect(mClipBounds.left, mClipBounds.top, mClipBounds.right,
5590 mClipBounds.bottom);

Completed in 2396 milliseconds