Home
last modified time | relevance | path

Searched refs:endHeight (Results 1 – 4 of 4) sorted by relevance

/frameworks/support/transition/src/main/java/androidx/transition/
DChangeBounds.java286 final int endHeight = endBottom - endTop; in createAnimator() local
290 if ((startWidth != 0 && startHeight != 0) || (endWidth != 0 && endHeight != 0)) { in createAnimator()
304 if (startWidth == endWidth && startHeight == endHeight) { in createAnimator()
343 int maxHeight = Math.max(startHeight, endHeight); in createAnimator()
360 endClip = new Rect(0, 0, endWidth, endHeight); in createAnimator()
/frameworks/base/core/java/android/transition/
DChangeBounds.java301 final int endHeight = endBottom - endTop; in createAnimator() local
305 if ((startWidth != 0 && startHeight != 0) || (endWidth != 0 && endHeight != 0)) { in createAnimator()
350 if (startWidth == endWidth && startHeight == endHeight) { in createAnimator()
388 int maxHeight = Math.max(startHeight, endHeight); in createAnimator()
405 endClip = new Rect(0, 0, endWidth, endHeight); in createAnimator()
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
DBaseCardViewTest.java50 void mockInfoHeightAnimation(BaseCardView view, int width, int startHeight, int endHeight) { in mockInfoHeightAnimation() argument
55 measureAndLayout(view, width, endHeight); in mockInfoHeightAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationContentView.java706 int endHeight = getViewHeight(mVisibleType); in calculateTransformationAmount() local
708 int totalDistance = Math.abs(endHeight - startHeight); in calculateTransformationAmount()
712 + "\n VisibleType: " + mVisibleType + " height: " + endHeight in calculateTransformationAmount()