Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarTouchableRegionManager.java73 private Region mTouchableRegion = new Region(); field in StatusBarTouchableRegionManager
147 pw.println(mTouchableRegion); in dump()
170 mTouchableRegion.set(headsUpTouchableRegion); in calculateTouchableRegion()
174 mTouchableRegion.set(0, 0, mNotificationShadeWindowView.getWidth(), in calculateTouchableRegion()
176 updateRegionForNotch(mTouchableRegion); in calculateTouchableRegion()
178 return mTouchableRegion; in calculateTouchableRegion()
H A DHeadsUpManagerPhone.java83 private final Region mTouchableRegion = new Region(); field in HeadsUpManagerPhone
188 mTouchableRegion.set(minX, stretchToTop ? 0 : tmpArray[1], maxX, tmpArray[1] + height); in getTouchableRegion()
189 return mTouchableRegion; in getTouchableRegion()
381 pw.println(mTouchableRegion); in dumpInternal()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
H A DBubbleBarLayerView.java70 private final Region mTouchableRegion = new Region(); field in BubbleBarLayerView
123 mTouchableRegion.setEmpty(); in onComputeInternalInsets()
124 getTouchableRegion(mTouchableRegion); in onComputeInternalInsets()
125 inoutInfo.touchableRegion.set(mTouchableRegion); in onComputeInternalInsets()
/aosp14/frameworks/base/core/java/com/android/internal/widget/floatingtoolbar/
H A DLocalFloatingToolbarPopup.java126 private final Region mTouchableRegion = new Region(); field in LocalFloatingToolbarPopup
131 info.touchableRegion.set(mTouchableRegion);
893 mTouchableRegion.setEmpty(); in setZeroTouchableSurface()
911 mTouchableRegion.set( in setContentAreaAsTouchableSurface()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogImpl.java196 private final Region mTouchableRegion = new Region(); field in VolumeDialogImpl
440 mTouchableRegion.setEmpty(); in onComputeInternalInsets()
452 internalInsetsInfo.touchableRegion.set(mTouchableRegion); in onComputeInternalInsets()
474 mTouchableRegion.op( in unionViewBoundstoTouchableRegion()
/aosp14/frameworks/base/core/java/android/view/
H A DViewRootImpl.java654 Region mTouchableRegion; field in ViewRootImpl
3865 needsSetInsets |= !Objects.equals(mPreviousTouchableRegion, mTouchableRegion) && in performTraversals()
3866 (mTouchableRegion != null); in performTraversals()
3868 if (mTouchableRegion != null) { in performTraversals()
3872 mPreviousTouchableRegion.set(mTouchableRegion); in performTraversals()
3884 touchableRegion = mTouchableRegion; in performTraversals()
3885 } else if (touchableRegion != null && mTouchableRegion != null) { in performTraversals()
3886 touchableRegion.op(touchableRegion, mTouchableRegion, Region.Op.UNION); in performTraversals()
3894 } else if (mTouchableRegion == null && mPreviousTouchableRegion != null) { in performTraversals()
11532 mTouchableRegion = new Region(r); in setTouchableRegion()
[all …]