Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/util/
DFloatingContentCoordinator.kt246 exclusionRects: Collection<Rect>, in <lambda>()
258 var (rectsToAvoidAbove, rectsToAvoidBelow) = exclusionRects in <lambda>()
266 exclusionRects = rectsToAvoidAbove.plus(newlyOverlappingRect), in <lambda>()
270 exclusionRects = rectsToAvoidBelow.plus(newlyOverlappingRect), in <lambda>()
311 exclusionRects: Collection<Rect>, in <lambda>()
319 exclusionRects.sortedBy { if (findAbove) -it.top else it.top } in <lambda>()
/frameworks/base/core/java/android/view/
DIWindowSession.aidl332 oneway void reportSystemGestureExclusionChanged(IWindow window, in List<Rect> exclusionRects); in reportSystemGestureExclusionChanged() argument
DWindowlessWindowManager.java430 java.util.List<android.graphics.Rect> exclusionRects) { in reportSystemGestureExclusionChanged() argument
/frameworks/base/services/core/java/com/android/server/wm/
DSession.java345 public void reportSystemGestureExclusionChanged(IWindow window, List<Rect> exclusionRects) { in reportSystemGestureExclusionChanged() argument
348 mService.reportSystemGestureExclusionChanged(this, window, exclusionRects); in reportSystemGestureExclusionChanged()
DWindowState.java801 boolean setSystemGestureExclusion(List<Rect> exclusionRects) { in setSystemGestureExclusion() argument
802 if (mExclusionRects.equals(exclusionRects)) { in setSystemGestureExclusion()
806 mExclusionRects.addAll(exclusionRects); in setSystemGestureExclusion()
DWindowManagerService.java4078 List<Rect> exclusionRects) { in reportSystemGestureExclusionChanged() argument
4081 if (win.setSystemGestureExclusion(exclusionRects)) { in reportSystemGestureExclusionChanged()