Home
last modified time | relevance | path

Searched refs:collapsedHeight (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DDragDownHelperTest.kt45 private val collapsedHeight = 300 regex
54 whenever(expandableView.collapsedHeight).thenReturn(collapsedHeight)
72 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight
77 whenever(expandableView.actualHeight).thenReturn(collapsedHeight)
H A DPulseExpansionHandlerTest.kt52 private val collapsedHeight = 300 regex
68 whenever(expandableView.collapsedHeight).thenReturn(collapsedHeight)
93 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight
98 whenever(expandableView.actualHeight).thenReturn(collapsedHeight)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DPulseExpansionHandler.kt264 val newHeight = Math.min((child.collapsedHeight + expansionHeight).toInt(),
291 if (child.actualHeight == child.collapsedHeight) {
295 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight)
H A DLockscreenShadeTransitionController.kt905 if (expandable && rubberband + child.collapsedHeight > child.maxContentHeight) {
906 var overshoot = rubberband + child.collapsedHeight - child.maxContentHeight
910 child.actualHeight = (child.collapsedHeight + rubberband).toInt()
918 if (child.actualHeight == child.collapsedHeight) {
922 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DStackScrollAlgorithm.java833 void clampHunToTop(float quickQsOffsetHeight, float stackTranslation, float collapsedHeight, in clampHunToTop() argument
842 viewState.height = (int) Math.max(viewState.height - distToRealY, collapsedHeight); in clampHunToTop()