Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/view/
DAnimateableViewBounds.java37 protected Rect mClipBounds = new Rect(); field in AnimateableViewBounds
122 return mClipBounds; in getClipBounds()
126 mClipBounds.set(Math.max(0, mClipRect.left), Math.max(0, mClipRect.top), in updateClipBounds()
129 if (!mLastClipBounds.equals(mClipBounds)) { in updateClipBounds()
130 mSourceView.setClipBounds(mClipBounds); in updateClipBounds()
133 mLastClipBounds.set(mClipBounds); in updateClipBounds()
/frameworks/base/libs/hwui/
DRenderProperties.h181 return RP_SET(mPrimitiveFields.mClipBounds, clipBounds) || ret; in setClipBounds()
466 const Rect& getClipBounds() const { return mPrimitiveFields.mClipBounds; } in getClipBounds()
472 outRect->doIntersect(mPrimitiveFields.mClipBounds); in getClippingRectForFlags()
475 outRect->set(mPrimitiveFields.mClipBounds); in getClippingRectForFlags()
565 Rect mClipBounds; member
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationContentView.java68 private final Rect mClipBounds = new Rect(); field in NotificationContentView
796 mClipBounds.set(0, top, getWidth(), bottom); in updateClipping()
797 setClipBounds(mClipBounds); in updateClipping()
/frameworks/base/core/java/android/view/
DView.java4004 Rect mClipBounds = null; field in View
19695 if (clipBounds == mClipBounds in setClipBounds()
19696 || (clipBounds != null && clipBounds.equals(mClipBounds))) { in setClipBounds()
19700 if (mClipBounds == null) { in setClipBounds()
19701 mClipBounds = new Rect(clipBounds); in setClipBounds()
19703 mClipBounds.set(clipBounds); in setClipBounds()
19706 mClipBounds = null; in setClipBounds()
19708 mRenderNode.setClipBounds(mClipBounds); in setClipBounds()
19719 return (mClipBounds != null) ? new Rect(mClipBounds) : null; in getClipBounds()
19733 if (mClipBounds != null) { in getClipBounds()
[all …]
DViewGroup.java6169 if ((forceParentCheck || rectIsVisible) && mClipBounds != null) { in getChildVisibleRect()
6171 rectIsVisible = rect.intersect(mClipBounds.left, mClipBounds.top, mClipBounds.right, in getChildVisibleRect()
6172 mClipBounds.bottom); in getChildVisibleRect()
/frameworks/base/config/
Dhiddenapi-private-dex.txt97338 Landroid/view/View;->mClipBounds:Landroid/graphics/Rect;