Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DKeyguardClockPositionAlgorithmTest.java95 assertThat(mClockPosition.stackScrollerPadding).isEqualTo(0); in notifPositionTopOfScreenOnAOD()
105 assertThat(mClockPosition.stackScrollerPadding).isEqualTo(0); in notifPositionAlignedWithClockInSplitShadeMode()
118 assertThat(mClockPosition.stackScrollerPadding).isEqualTo(100); in notifPositionAlignedWithClockAndBurnInOffsetInSplitShadeMode()
139 assertThat(mClockPosition.stackScrollerPadding).isEqualTo(expectedPadding); in notifPaddingMakesUpToFullMarginInSplitShade_usesHelper()
149 assertThat(mClockPosition.stackScrollerPadding).isEqualTo(0); in notifPositionWithFullDragOnLockScreen()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DDebugDrawable.java74 .stackScrollerPadding), in draw()
78 .stackScrollerPadding), in draw()
91 mNotificationPanelViewController.getClockPositionResult().stackScrollerPadding, in draw()
DQuickSettingsController.kt50 fun calculatePanelHeightExpanded(stackScrollerPadding: Int): Int
DQuickSettingsControllerSceneImpl.kt62 override fun calculatePanelHeightExpanded(stackScrollerPadding: Int): Int { in calculatePanelHeightExpanded()
DNotificationPanelViewController.java1110 int stackScrollerPadding; in positionClockAndNotifications() local
1121 stackScrollerPadding = 0; in positionClockAndNotifications()
1123 stackScrollerPadding = mQsController.getHeaderHeight(); in positionClockAndNotifications()
1126 stackScrollerPadding = mClockPositionResult.stackScrollerPaddingExpanded; in positionClockAndNotifications()
1129 mNotificationStackScrollLayoutController.setIntrinsicPadding(stackScrollerPadding); in positionClockAndNotifications()
1738 return mClockPositionResult.stackScrollerPadding; in getKeyguardNotificationStaticPadding()
1745 mClockPositionResult.stackScrollerPadding; in getKeyguardNotificationStaticPadding()
1799 mClockPositionResult.stackScrollerPadding); in getMaxPanelHeight()
1808 mClockPositionResult.stackScrollerPadding) in getMaxPanelHeight()
1864 mClockPositionResult.stackScrollerPadding); in onHeightUpdated()
DQuickSettingsControllerImpl.java1435 public int calculatePanelHeightExpanded(int stackScrollerPadding) { in calculatePanelHeightExpanded() argument
1455 float totalHeight = Math.max(maxQsHeight, mBarState == KEYGUARD ? stackScrollerPadding : 0) in calculatePanelHeightExpanded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardClockPositionAlgorithm.java95 result.stackScrollerPadding = getStackScrollerPadding(); in run()
125 public int stackScrollerPadding; field in KeyguardClockPositionAlgorithm.Result