Searched refs:endTop (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/transition/ |
D | ChangeBounds.java | 301 final int endTop = endBounds.top; in createAnimator() local 309 final int endHeight = endBottom - endTop; in createAnimator() 314 if (startLeft != endLeft || startTop != endTop) ++numChanges; in createAnimator() 360 endTop); in createAnimator() 366 endLeft, endTop); in createAnimator() 383 } else if (startLeft != endLeft || startTop != endTop) { in createAnimator() 385 endLeft, endTop); in createAnimator() 402 if (startLeft != endLeft || startTop != endTop) { in createAnimator() 404 endTop); in createAnimator() 432 view.setLeftTopRightBottom(endLeft, endTop, endRight, in createAnimator()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | ViewHierarchyAnimator.kt | 795 val endTop = top - marginAdjustment.top in <lambda>() constant 809 Bound.TOP to endTop, in <lambda>() 810 Bound.BOTTOM to endTop, in <lambda>() 815 Bound.TOP to endTop, in <lambda>() 816 Bound.BOTTOM to endTop, in <lambda>() 851 Bound.TOP to endTop, in <lambda>() 852 Bound.BOTTOM to endTop, in <lambda>() 859 Bound.TOP to (endTop + endBottom) / 2, in <lambda>() 860 Bound.BOTTOM to (endTop + endBottom) / 2, in <lambda>() 907 val endTop = in <lambda>() constant [all …]
|
D | TransitionAnimator.kt | 289 var endTop = endState.top in <lambda>() variable 300 endTop != endState.top || in <lambda>() 305 endTop = endState.top in <lambda>() 384 state.top = MathUtils.lerp(startTop, endTop, progress).roundToInt() in <lambda>()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/ |
D | ActivityEmbeddingAnimationSpec.java | 126 final int endTop; in createChangeBoundsCloseAnimation() local 130 endTop = 0; in createChangeBoundsCloseAnimation() 134 endTop = parentBounds.top == bounds.top ? -bounds.height() : bounds.height(); in createChangeBoundsCloseAnimation() 140 final Animation animation = new TranslateAnimation(0, endLeft, 0, endTop); in createChangeBoundsCloseAnimation()
|
/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/ |
D | TaskFragmentAnimationSpec.java | 119 final int endTop; in createChangeBoundsCloseAnimation() local 123 endTop = 0; in createChangeBoundsCloseAnimation() 127 endTop = parentBounds.top == bounds.top ? -bounds.height() : bounds.height(); in createChangeBoundsCloseAnimation() 133 final Animation animation = new TranslateAnimation(0, endLeft, 0, endTop); in createChangeBoundsCloseAnimation()
|