Home
last modified time | relevance | path

Searched refs:exclusionRects (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/
DFloatingContentCoordinator.kt258 exclusionRects: Collection<Rect>, in <lambda>()
270 var (rectsToAvoidAbove, rectsToAvoidBelow) = exclusionRects in <lambda>()
279 exclusionRects = rectsToAvoidAbove.plus(newlyOverlappingRect), in <lambda>()
285 exclusionRects = rectsToAvoidBelow.plus(newlyOverlappingRect), in <lambda>()
327 exclusionRects: Collection<Rect>, in <lambda>()
335 exclusionRects.sortedBy { if (findAbove) -it.top else it.top } in <lambda>()
/frameworks/base/core/java/android/view/
DIWindowSession.aidl306 oneway void reportSystemGestureExclusionChanged(IWindow window, in List<Rect> exclusionRects); in reportSystemGestureExclusionChanged() argument
DWindowlessWindowManager.java617 List<Rect> exclusionRects) { in reportSystemGestureExclusionChanged() argument
/frameworks/base/services/core/java/com/android/server/wm/
DSession.java587 public void reportSystemGestureExclusionChanged(IWindow window, List<Rect> exclusionRects) { in reportSystemGestureExclusionChanged() argument
590 mService.reportSystemGestureExclusionChanged(this, window, exclusionRects); in reportSystemGestureExclusionChanged()
DWindowState.java950 boolean setSystemGestureExclusion(List<Rect> exclusionRects) { in setSystemGestureExclusion() argument
951 if (mExclusionRects.equals(exclusionRects)) { in setSystemGestureExclusion()
955 mExclusionRects.addAll(exclusionRects); in setSystemGestureExclusion()
DWindowManagerService.java4915 List<Rect> exclusionRects) { in reportSystemGestureExclusionChanged() argument
4925 if (win.setSystemGestureExclusion(exclusionRects)) { in reportSystemGestureExclusionChanged()
/frameworks/base/core/java/android/inputmethodservice/
DInputMethodService.java1354 ArrayList<Rect> exclusionRects = new ArrayList<>(); in setImeExclusionRect() local
1355 exclusionRects.add(new Rect(0, in setImeExclusionRect()
1359 exclusionRects.add(new Rect(rootView.getWidth() - systemGesture.right, in setImeExclusionRect()
1363 rootView.setSystemGestureExclusionRects(exclusionRects); in setImeExclusionRect()