Searched refs:startTop (Results 1 – 8 of 8) sorted by relevance
/aosp14/frameworks/base/core/java/android/transition/ |
H A D | ChangeBounds.java | 296 final int startTop = startBounds.top; in createAnimator() local 303 final int startHeight = startBottom - startTop; in createAnimator() 310 if (startLeft != endLeft || startTop != endTop) ++numChanges; in createAnimator() 352 view.setLeftTopRightBottom(startLeft, startTop, startRight, startBottom); in createAnimator() 361 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 379 } else if (startLeft != endLeft || startTop != endTop) { in createAnimator() 380 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 394 view.setLeftTopRightBottom(startLeft, startTop, startLeft + maxWidth, in createAnimator() 395 startTop + maxHeight); in createAnimator() 398 if (startLeft != endLeft || startTop != endTop) { in createAnimator() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
H A D | LaunchAnimator.kt | 135 private val startTop = top regex 144 get() = top - startTop 219 val startTop = state.top regex 330 state.top = MathUtils.lerp(startTop, endTop, progress).roundToInt()
|
H A D | ViewHierarchyAnimator.kt | 318 val startTop = getBound(view, Bound.TOP) ?: previousTop regex 340 startTop, 653 val startTop = if (ignorePreviousValues) newTop else previousTop regex 658 var top = startTop 680 Hotspot.TOP_RIGHT -> min(startTop, newTop) 709 Hotspot.TOP_RIGHT -> min(startTop, newTop)
|
H A D | DialogLaunchAnimator.kt | 1033 val startTop = bounds.top regex 1058 bounds.top = MathUtils.lerp(startTop, top, progress).roundToInt()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/ |
H A D | ActivityEmbeddingAnimationSpec.java | 95 final int startTop; in createChangeBoundsOpenAnimation() local 98 startTop = 0; in createChangeBoundsOpenAnimation() 102 startTop = parentBounds.top == bounds.top ? -bounds.height() : bounds.height(); in createChangeBoundsOpenAnimation() 108 final Animation animation = new TranslateAnimation(startLeft, 0, startTop, 0); in createChangeBoundsOpenAnimation()
|
/aosp14/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/ |
H A D | TaskFragmentAnimationSpec.java | 92 final int startTop; in createChangeBoundsOpenAnimation() local 95 startTop = 0; in createChangeBoundsOpenAnimation() 99 startTop = parentBounds.top == bounds.top ? -bounds.height() : bounds.height(); in createChangeBoundsOpenAnimation() 105 final Animation animation = new TranslateAnimation(startLeft, 0, startTop, 0); in createChangeBoundsOpenAnimation()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableNotificationRow.java | 2312 int startTop = params.getStartNotificationTop(); 2313 top = (int) Math.min(MathUtils.lerp(startTop, params.getTop(), expandProgress), 2314 startTop);
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
H A D | QuickSettingsController.java | 1176 final int startTop = mLastClipBounds.top; in applyClippingBounds() local 1190 int animTop = (int) MathUtils.lerp(startTop, in applyClippingBounds()
|