Searched refs:startLeft (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/core/java/android/transition/ |
D | ChangeBounds.java | 294 final int startLeft = startBounds.left; in createAnimator() local 302 final int startWidth = startRight - startLeft; in createAnimator() 310 if (startLeft != endLeft || startTop != endTop) ++numChanges; in createAnimator() 352 view.setLeftTopRightBottom(startLeft, startTop, startRight, startBottom); in createAnimator() 355 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, endLeft, 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() 398 if (startLeft != endLeft || startTop != endTop) { in createAnimator() [all …]
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/ |
D | ActivityEmbeddingAnimationSpec.java | 86 final int startLeft; in createChangeBoundsOpenAnimation() local 91 startLeft = parentBounds.left == bounds.left ? -bounds.width() : bounds.width(); in createChangeBoundsOpenAnimation() 95 startLeft = 0; in createChangeBoundsOpenAnimation() 100 final Animation animation = new TranslateAnimation(startLeft, 0, startTop, 0); in createChangeBoundsOpenAnimation()
|
/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/ |
D | TaskFragmentAnimationSpec.java | 91 final int startLeft; in createChangeBoundsOpenAnimation() local 96 startLeft = parentBounds.left == bounds.left ? -bounds.width() : bounds.width(); in createChangeBoundsOpenAnimation() 100 startLeft = 0; in createChangeBoundsOpenAnimation() 105 final Animation animation = new TranslateAnimation(startLeft, 0, startTop, 0); in createChangeBoundsOpenAnimation()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | LaunchAnimator.kt | 221 val startLeft = state.left in <lambda>() constant 223 val startCenterX = (startLeft + startRight) / 2f in <lambda>() 224 val startWidth = startRight - startLeft in <lambda>()
|
D | ViewHierarchyAnimator.kt | 298 val startLeft = getBound(view, Bound.LEFT) ?: previousLeft in <lambda>() constant 320 startLeft, in <lambda>() 633 val startLeft = if (ignorePreviousValues) newLeft else previousLeft in <lambda>() constant 638 var left = startLeft in <lambda>() 649 Hotspot.TOP_LEFT -> min(startLeft, newLeft) in <lambda>() 678 Hotspot.TOP_LEFT -> min(startLeft, newLeft) in <lambda>()
|
D | DialogLaunchAnimator.kt | 1116 val startLeft = bounds.left in onLayoutChange() constant 1141 bounds.left = MathUtils.lerp(startLeft, left, progress).roundToInt() in onLayoutChange()
|
/frameworks/base/core/java/android/widget/ |
D | ActionMenuView.java | 523 int startLeft = getPaddingLeft(); in onLayout() local 531 startLeft += lp.leftMargin; in onLayout() 535 v.layout(startLeft, t, startLeft + width, t + height); in onLayout() 536 startLeft += width + lp.rightMargin + spacerSize; in onLayout()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
D | QuickSettingsController.java | 1089 final int startLeft = mLastClipBounds.left; in applyClippingBounds() local 1102 int animLeft = (int) MathUtils.lerp(startLeft, in applyClippingBounds()
|