Home
last modified time | relevance | path

Searched refs:linearProgress (Results 1 – 15 of 15) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
H A DLaunchAnimator.kt49 linearProgress: Float,
54 (linearProgress * timings.totalDuration - delay) / duration,
115 fun onLaunchAnimationProgress(state: State, progress: Float, linearProgress: Float) {}
323 val linearProgress = animation.animatedFraction regex
324 val progress = interpolators.positionInterpolator.getInterpolation(linearProgress)
345 linearProgress,
372 linearProgress,
377 controller.onLaunchAnimationProgress(state, progress, linearProgress)
401 linearProgress: Float,
431 linearProgress,
[all …]
H A DActivityLaunchAnimator.kt150 override fun onLaunchAnimationProgress(linearProgress: Float) {
365 @JvmDefault fun onLaunchAnimationProgress(linearProgress: Float) {}
461 override fun onLaunchAnimationProgress(linearProgress: Float) {
462 delegate?.onLaunchAnimationProgress(linearProgress)
738 linearProgress: Float
747 listener?.onLaunchAnimationProgress(linearProgress)
765 linearProgress: Float,
817 linearProgress,
848 linearProgress: Float
860 linearProgress,
[all …]
H A DDialogLaunchAnimator.kt956 linearProgress: Float
958 startController.onLaunchAnimationProgress(state, progress, linearProgress)
962 endController.onLaunchAnimationProgress(state, progress, linearProgress)
H A DGhostedViewLaunchAnimatorController.kt238 linearProgress: Float
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
H A DSplashScreenExitAnimationUtils.java167 float linearProgress = (float) animation.getAnimatedValue(); in createAnimator()
172 linearProgress, 0 /* delay */, iconFadeOutDuration, animationDuration)); in createAnimator()
186 final float revealLinearProgress = getProgress(linearProgress, appRevealDelay, in createAnimator()
198 private static float getProgress(float linearProgress, long delay, long duration, in getProgress() argument
201 (linearProgress * (animationDuration) - delay) / duration, in getProgress()
237 void onAnimationProgress(float linearProgress) { in onAnimationProgress() argument
242 final float radiusProgress = MASK_RADIUS_INTERPOLATOR.getInterpolation(linearProgress); in onAnimationProgress()
243 final float alphaProgress = Interpolators.ALPHA_OUT.getInterpolation(linearProgress); in onAnimationProgress()
321 void onAnimationProgress(float linearProgress) { in onAnimationProgress() argument
327 final float progress = SHIFT_UP_INTERPOLATOR.getInterpolation(linearProgress); in onAnimationProgress()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DLaunchAnimationParameters.kt37 var linearProgress = 0f regex
55 Interpolators.FAST_OUT_SLOW_IN.getInterpolation(linearProgress)).toInt()
61 return LaunchAnimator.getProgress(ActivityLaunchAnimator.TIMINGS, linearProgress, delay,
H A DNotificationLaunchAnimatorController.kt221 linearProgress: Float
225 params.linearProgress = linearProgress
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarLaunchAnimatorController.kt53 linearProgress: Float
55 delegate.onLaunchAnimationProgress(state, progress, linearProgress)
56 shadeViewController.applyLaunchAnimationProgress(linearProgress)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
H A DGhostedViewLaunchAnimatorControllerTest.kt40 controller.onLaunchAnimationProgress(state, progress = 0f, linearProgress = 0f)
H A DActivityLaunchAnimatorTest.kt272 linearProgress: Float
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DShadeViewControllerEmptyImpl.kt56 override fun applyLaunchAnimationProgress(linearProgress: Float) {}
H A DShadeViewController.kt143 fun applyLaunchAnimationProgress(linearProgress: Float)
H A DNotificationPanelViewController.java3198 public void applyLaunchAnimationProgress(float linearProgress) { in applyLaunchAnimationProgress() argument
3200 linearProgress, ANIMATION_DELAY_ICON_FADE_IN, 100) == 0.0f; in applyLaunchAnimationProgress()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DUdfpsKeyguardViewControllerLegacy.kt197 override fun onLaunchAnimationProgress(linearProgress: Float) {
198 activityLaunchProgress = linearProgress
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/
H A DExpandableController.kt176 linearProgress: Float