Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DDragDownHelperTest.kt47 private val collapsedHeight = 300 constant
57 whenever(expandableView.collapsedHeight).thenReturn(collapsedHeight) in setUp()
77 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight in cancelChildExpansion_updateHeight()
82 whenever(expandableView.actualHeight).thenReturn(collapsedHeight) in cancelChildExpansion_dontUpdateHeight()
DPulseExpansionHandlerTest.kt51 private val collapsedHeight = 300 constant in com.android.systemui.statusbar.PulseExpansionHandlerTest
65 whenever(expandableView.collapsedHeight).thenReturn(collapsedHeight) in setUp()
89 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight in resetChild_updateHeight()
94 whenever(expandableView.actualHeight).thenReturn(collapsedHeight) in resetChild_dontUpdateHeight()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DPulseExpansionHandler.kt270 (child.collapsedHeight + expansionHeight).toInt(), in <lambda>()
301 if (child.actualHeight == child.collapsedHeight) { in <lambda>()
305 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight) in <lambda>()
DLockscreenShadeTransitionController.kt925 if (expandable && rubberband + child.collapsedHeight > child.maxContentHeight) { in handleExpansion()
926 var overshoot = rubberband + child.collapsedHeight - child.maxContentHeight in handleExpansion()
930 child.actualHeight = (child.collapsedHeight + rubberband).toInt() in handleExpansion()
938 if (child.actualHeight == child.collapsedHeight) { in cancelChildExpansion()
942 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight) in cancelChildExpansion()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithm.java974 void clampHunToTop(float clampInset, float stackTranslation, float collapsedHeight, in clampHunToTop() argument
983 viewState.height = (int) Math.max(viewState.height - distToRealY, collapsedHeight); in clampHunToTop()