Home
last modified time | relevance | path

Searched refs:transitionHeight (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/desktopmode/
DDesktopModeVisualIndicatorTest.kt64 val transitionHeight = context.resources.getDimensionPixelSize( in testFullscreenRegionCalculation() constant
78 transitionHeight)) in testFullscreenRegionCalculation()
86 val transitionHeight = context.resources.getDimensionPixelSize( in testSplitLeftRegionCalculation() constant
93 assertThat(testRegion.bounds).isEqualTo(Rect(0, transitionHeight, 32, 1600)) in testSplitLeftRegionCalculation()
101 val transitionHeight = context.resources.getDimensionPixelSize( in testSplitRightRegionCalculation() constant
108 assertThat(testRegion.bounds).isEqualTo(Rect(2368, transitionHeight, 2400, 1600)) in testSplitRightRegionCalculation()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/
DDesktopModeVisualIndicator.java141 int transitionHeight = windowingMode == WINDOWING_MODE_FREEFORM in calculateFullscreenRegion() local
152 transitionHeight)); in calculateFullscreenRegion()
160 transitionHeight)); in calculateFullscreenRegion()
187 int transitionHeight = windowingMode == WINDOWING_MODE_FREEFORM in calculateSplitLeftRegion() local
191 region.union(new Rect(0, transitionHeight, transitionEdgeWidth, layout.height())); in calculateSplitLeftRegion()
201 int transitionHeight = windowingMode == WINDOWING_MODE_FREEFORM in calculateSplitRightRegion() local
205 region.union(new Rect(layout.width() - transitionEdgeWidth, transitionHeight, in calculateSplitRightRegion()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DLockscreenShadeTransitionController.kt685 val transitionHeight = if (keyguardBypassController.bypassEnabled) height else 0.0f in <lambda>() constant
686 transitionToShadeAmountCommon(transitionHeight) in <lambda>()