Home
last modified time | relevance | path

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

/frameworks/support/transition/ics/android/support/transition/
DChangeBoundsPort.java144 int endHeight = endBottom - endTop; in createAnimator() local
146 if (startWidth != 0 && startHeight != 0 && endWidth != 0 && endHeight != 0) { in createAnimator()
228 if (startHeight != endHeight) { in createAnimator()
230 Math.max(startHeight, endHeight)); in createAnimator()
243 int heightDelta = endHeight - startHeight; in createAnimator()
266 Rect tempEndBounds = 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()
318 if (startWidth == endWidth && startHeight == endHeight) { in createAnimator()
356 int maxHeight = Math.max(startHeight, endHeight); in createAnimator()
373 endClip = new Rect(0, 0, endWidth, endHeight); in createAnimator()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationContentView.java550 int endHeight = getViewForVisibleType(mVisibleType).getHeight(); in calculateTransformationAmount() local
552 int totalDistance = Math.abs(endHeight - startHeight); in calculateTransformationAmount()