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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DAnimateableViewBounds.java32 Rect mClipBounds = new Rect(); field in class:AnimateableViewBounds
80 mClipBounds.set(mClipRect.left, mClipRect.top,
83 mSourceView.setClipBounds(mClipBounds);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java46 private final Rect mClipBounds = new Rect(); field in class:NotificationContentView
184 mClipBounds.set(0, mClipTopAmount, getWidth(), mActualHeight);
185 setClipBounds(mClipBounds);
/frameworks/base/libs/hwui/
H A DRenderProperties.h167 return RP_SET(mPrimitiveFields.mClipBounds, clipBounds) || ret;
520 outRect->intersect(mPrimitiveFields.mClipBounds);
523 outRect->set(mPrimitiveFields.mClipBounds);
599 Rect mClipBounds; member in struct:android::uirenderer::RenderProperties::PrimitiveFields
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarHeaderView.java114 private final Rect mClipBounds = new Rect(); field in class:StatusBarHeaderView
177 outline.setRect(mClipBounds);
479 mClipBounds.set(getPaddingLeft(), 0, getWidth() - getPaddingRight(), (int) height);
480 setClipBounds(mClipBounds);
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java58 private Rect mClipBounds; field in class:GLES20Canvas
255 if (mClipBounds == null) mClipBounds = new Rect();
256 return mClipBounds;
H A DView.java3006 Rect mClipBounds = null; field in class:View
14712 if (clipBounds == mClipBounds
14713 || (clipBounds != null && clipBounds.equals(mClipBounds))) {
14717 if (mClipBounds == null) {
14718 mClipBounds = new Rect(clipBounds);
14720 mClipBounds.set(clipBounds);
14723 mClipBounds = null;
14725 mRenderNode.setClipBounds(mClipBounds);
14736 return (mClipBounds != null) ? new Rect(mClipBounds)
[all...]
H A DViewGroup.java5016 if (rectIsVisible && mClipBounds != null) {
5018 rectIsVisible = rect.intersect(mClipBounds.left, mClipBounds.top, mClipBounds.right,
5019 mClipBounds.bottom);

Completed in 310 milliseconds