Searched refs:endHeight (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/core/java/android/transition/ |
D | ChangeBounds.java | 309 final int endHeight = endBottom - endTop; in createAnimator() local 313 if ((startWidth != 0 && startHeight != 0) || (endWidth != 0 && endHeight != 0)) { in createAnimator() 358 if (startWidth == endWidth && startHeight == endHeight) { in createAnimator() 396 int maxHeight = Math.max(startHeight, endHeight); in createAnimator() 413 endClip = new Rect(0, 0, endWidth, endHeight); in createAnimator()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayoutTest.java | 253 final float endHeight = 8f; in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging() local 256 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging() 257 endHeight, expansionFraction); in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging() 259 mStackScroller.updateStackHeight(endHeight, expansionFraction); in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | QSAnimator.java | 816 HeightExpansionAnimator(TouchAnimator.Listener listener, int startHeight, int endHeight) { in HeightExpansionAnimator() argument 818 mAnimator = ValueAnimator.ofInt(startHeight, endHeight); in HeightExpansionAnimator()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | TransitionController.java | 674 final int endHeight = endBounds.height(); in setDisplaySyncMethod() local 677 if ((endWidth > startWidth) == (endHeight > startHeight) in setDisplaySyncMethod() 678 && (endWidth != startWidth || endHeight != startHeight)) { in setDisplaySyncMethod()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 1446 final float endHeight = updateStackEndHeight( 1448 updateStackHeight(endHeight, fraction); 1452 final float endHeight = mAmbientState.getStackEndHeight(); 1453 updateStackHeight(endHeight, fraction); 1474 public void updateStackHeight(float endHeight, float fraction) { 1485 MathUtils.lerp(endHeight * StackScrollAlgorithm.START_FRACTION, 1486 endHeight, fraction));
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentView.java | 793 int endHeight = getViewHeight(mVisibleType); in calculateTransformationAmount() local 795 int totalDistance = Math.abs(endHeight - startHeight); in calculateTransformationAmount() 799 + "\n VisibleType: " + mVisibleType + " height: " + endHeight in calculateTransformationAmount()
|
/frameworks/base/core/java/android/view/ |
D | DisplayCutout.java | 1341 final int endHeight = swapAspect ? startWidth : startHeight; 1344 final Rect safeInsets = DisplayCutout.computeSafeInsets(endWidth, endHeight, tmp);
|