Searched refs:collapsedHeight (Results 1 – 5 of 5) sorted by relevance
47 private val collapsedHeight = 300 constant57 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()
51 private val collapsedHeight = 300 constant in com.android.systemui.statusbar.PulseExpansionHandlerTest65 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()
270 (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>()
925 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()
974 void clampHunToTop(float clampInset, float stackTranslation, float collapsedHeight, in clampHunToTop() argument983 viewState.height = (int) Math.max(viewState.height - distToRealY, collapsedHeight); in clampHunToTop()