Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/transition/
DChangeBounds.java305 final int endHeight = endBottom - endTop; in createAnimator() local
309 if ((startWidth != 0 && startHeight != 0) || (endWidth != 0 && endHeight != 0)) { in createAnimator()
354 if (startWidth == endWidth && startHeight == endHeight) { in createAnimator()
392 int maxHeight = Math.max(startHeight, endHeight); in createAnimator()
409 endClip = new Rect(0, 0, endWidth, endHeight); in createAnimator()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutTest.java242 final float endHeight = 8f; in testUpdateStackHeight_withDozeAmount_whenDozeChanging() local
245 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withDozeAmount_whenDozeChanging()
246 endHeight, dozeAmount); in testUpdateStackHeight_withDozeAmount_whenDozeChanging()
248 mStackScroller.updateStackHeight(endHeight, expansionFraction); in testUpdateStackHeight_withDozeAmount_whenDozeChanging()
257 final float endHeight = 8f; in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging() local
260 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging()
261 endHeight, expansionFraction); in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging()
263 mStackScroller.updateStackHeight(endHeight, expansionFraction); in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSAnimator.java818 HeightExpansionAnimator(TouchAnimator.Listener listener, int startHeight, int endHeight) { in HeightExpansionAnimator() argument
820 mAnimator = ValueAnimator.ofInt(startHeight, endHeight); in HeightExpansionAnimator()
/frameworks/base/core/java/android/view/
DDisplayCutout.java1191 final int endHeight = swapAspect ? startWidth : startHeight; in getRotated() local
1194 final Rect safeInsets = DisplayCutout.computeSafeInsets(endWidth, endHeight, tmp); in getRotated()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentView.java731 int endHeight = getViewHeight(mVisibleType); in calculateTransformationAmount() local
733 int totalDistance = Math.abs(endHeight - startHeight); in calculateTransformationAmount()
737 + "\n VisibleType: " + mVisibleType + " height: " + endHeight in calculateTransformationAmount()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java1395 final float endHeight = updateStackEndHeight(
1397 updateStackHeight(endHeight, fraction);
1401 final float endHeight = mAmbientState.getStackEndHeight();
1402 updateStackHeight(endHeight, fraction);
1423 public void updateStackHeight(float endHeight, float fraction) {
1432 MathUtils.lerp(endHeight * StackScrollAlgorithm.START_FRACTION,
1433 endHeight, fraction));