Searched refs:mClipBounds (Results 1 - 6 of 6) 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/libs/hwui/
H A DRenderProperties.h195 return RP_SET(mPrimitiveFields.mClipBounds, clipBounds) || ret;
548 outRect->intersect(mPrimitiveFields.mClipBounds);
551 outRect->set(mPrimitiveFields.mClipBounds);
642 Rect mClipBounds; member in struct:android::uirenderer::RenderProperties::PrimitiveFields
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java48 private final Rect mClipBounds = new Rect(); field in class:NotificationContentView
304 mClipBounds.set(0, mClipTopAmount, getWidth(), mContentHeight);
305 setClipBounds(mClipBounds);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarHeaderView.java119 private final Rect mClipBounds = new Rect(); field in class:StatusBarHeaderView
184 outline.setRect(mClipBounds);
494 mClipBounds.set(getPaddingLeft(), 0, getWidth() - getPaddingRight(), (int) height);
495 setClipBounds(mClipBounds);
/frameworks/base/core/java/android/view/
H A DView.java3172 Rect mClipBounds = null; field in class:View
15715 if (clipBounds == mClipBounds
15716 || (clipBounds != null && clipBounds.equals(mClipBounds))) {
15720 if (mClipBounds == null) {
15721 mClipBounds = new Rect(clipBounds);
15723 mClipBounds.set(clipBounds);
15726 mClipBounds = null;
15728 mRenderNode.setClipBounds(mClipBounds);
15739 return (mClipBounds != null) ? new Rect(mClipBounds)
[all...]
H A DViewGroup.java5415 if (rectIsVisible && mClipBounds != null) {
5417 rectIsVisible = rect.intersect(mClipBounds.left, mClipBounds.top, mClipBounds.right,
5418 mClipBounds.bottom);

Completed in 897 milliseconds