Home
last modified time | relevance | path

Searched refs:startLeft (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/core/java/android/transition/
H A DChangeBounds.java294 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 …]
/aosp12/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
H A DLaunchAnimator.kt211 val startLeft = state.left regex
213 val startCenterX = (startLeft + startRight) / 2f
214 val startWidth = startRight - startLeft
H A DDialogLaunchAnimator.kt742 val startLeft = bounds.left regex
764 bounds.left = MathUtils.lerp(startLeft, left, progress).roundToInt()
/aosp12/packages/apps/Dialer/java/com/android/dialer/app/list/
H A DOldSpeedDialFragment.java294 Integer startLeft = itemIdLeftMap.get(itemId); in animateGridView()
300 if (startLeft != null) { in animateGridView()
301 if (startLeft != left) { in animateGridView()
302 deltaX = startLeft - left; in animateGridView()
/aosp12/frameworks/base/core/java/android/widget/
H A DActionMenuView.java523 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()
/aosp12/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/
H A DTaskFragmentAnimationSpec.java91 final int startLeft = bounds.left == 0 ? -bounds.width() : bounds.width(); in createChangeBoundsOpenAnimation() local
95 final Animation animation = new TranslateAnimation(startLeft, 0, 0, 0); in createChangeBoundsOpenAnimation()
/aosp12/packages/apps/DeskClock/src/com/android/deskclock/
H A DAnimatorUtils.kt246 val startLeft = from.left - fromInsets.left + targetInsets.left regex
257 return getBoundsAnimator(target, startLeft, startTop, startRight, startBottom, endLeft,
/aosp12/packages/apps/Settings/src/com/android/settings/widget/
H A DDotsPageIndicator.java245 float startLeft = left + ((right - left - requiredWidth) / 2) + dotRadius; in calculateDotPositions() local
248 dotCenterX[i] = startLeft + i * (dotDiameter + gap); in calculateDotPositions()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelViewController.java2365 final int startLeft = mKeyguardStatusAreaClipBounds.left; in applyQSClippingBounds() local
2378 int animLeft = (int) MathUtils.lerp(startLeft, in applyQSClippingBounds()