Home
last modified time | relevance | path

Searched refs:inoutInfo (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/
DTouchableRegionViewController.kt40 ViewTreeObserver.OnComputeInternalInsetsListener { inoutInfo -> in <lambda>() method
41 inoutInfo.setTouchableInsets( in <lambda>()
47 inoutInfo.touchableRegion.set(tempRect) in <lambda>()
/frameworks/base/packages/SystemUI/plugin/ExamplePlugin/src/com/android/systemui/plugin/testoverlayplugin/
DSampleOverlayPlugin.java96 final OnComputeInternalInsetsListener onComputeInternalInsetsListener = inoutInfo -> {
97 inoutInfo.setTouchableInsets(InternalInsetsInfo.TOUCHABLE_INSETS_REGION);
99 inoutInfo.touchableRegion.set(new Rect(0, 0, 50000, (int) mStatusBarHeight));
101 inoutInfo.touchableRegion.set(new Rect(0, 0, 50000, 50000));
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/temporarydisplay/
DTouchableRegionViewControllerTest.kt76 val inoutInfo = ViewTreeObserver.InternalInsetsInfo() in <lambda>() constant
77 listener.onComputeInternalInsets(inoutInfo) in <lambda>()
79 assertThat(inoutInfo.touchableRegion.bounds).isEqualTo(Rect(1, 2, 3, 4)) in <lambda>()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/
DTaskView.java479 public void onComputeInternalInsets(ViewTreeObserver.InternalInsetsInfo inoutInfo) { in onComputeInternalInsets() argument
484 if (inoutInfo.touchableRegion.isEmpty()) { in onComputeInternalInsets()
485 inoutInfo.setTouchableInsets( in onComputeInternalInsets()
490 inoutInfo.touchableRegion.set(mTmpRootRect); in onComputeInternalInsets()
495 inoutInfo.touchableRegion.op(mTmpRect, Region.Op.DIFFERENCE); in onComputeInternalInsets()
498 inoutInfo.touchableRegion.op(mObscuredTouchRegion, Region.Op.UNION); in onComputeInternalInsets()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DDraggableConstraintLayout.java177 public void onComputeInternalInsets(ViewTreeObserver.InternalInsetsInfo inoutInfo) { in onComputeInternalInsets() argument
185 inoutInfo.setTouchableInsets(ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_REGION); in onComputeInternalInsets()
186 inoutInfo.touchableRegion.set(r); in onComputeInternalInsets()
DScreenshotView.java273 public void onComputeInternalInsets(ViewTreeObserver.InternalInsetsInfo inoutInfo) { in onComputeInternalInsets() argument
274 inoutInfo.setTouchableInsets(ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_REGION); in onComputeInternalInsets()
275 inoutInfo.touchableRegion.set(getTouchRegion(true)); in onComputeInternalInsets()
/frameworks/base/services/core/java/com/android/server/wm/
DImmersiveModeConfirmation.java286 ViewTreeObserver.InternalInsetsInfo inoutInfo) {
289 inoutInfo.setTouchableInsets(
291 inoutInfo.touchableRegion.set(
/frameworks/base/core/java/android/view/
DViewTreeObserver.java366 public void onComputeInternalInsets(InternalInsetsInfo inoutInfo); in onComputeInternalInsets() argument
1292 final void dispatchOnComputeInternalInsets(InternalInsetsInfo inoutInfo) { in dispatchOnComputeInternalInsets() argument
1304 access.get(i).onComputeInternalInsets(inoutInfo); in dispatchOnComputeInternalInsets()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleStackView.java1440 public void onComputeInternalInsets(ViewTreeObserver.InternalInsetsInfo inoutInfo) { in onComputeInternalInsets() argument
1441 inoutInfo.setTouchableInsets(ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_REGION); in onComputeInternalInsets()
1445 inoutInfo.touchableRegion.set(mTempRect); in onComputeInternalInsets()