/aosp12/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
H A D | LaunchAnimator.kt | 52 linearProgress: Float, 57 (linearProgress * timings.totalDuration - delay) / duration, 106 fun onLaunchAnimationProgress(state: State, progress: Float, linearProgress: Float) {} 292 val linearProgress = animation.animatedFraction regex 293 val progress = interpolators.positionInterpolator.getInterpolation(linearProgress) 313 linearProgress, 321 linearProgress, 325 controller.onLaunchAnimationProgress(state, progress, linearProgress) 349 linearProgress: Float, 377 linearProgress, [all …]
|
H A D | ActivityLaunchAnimator.kt | 412 linearProgress: Float 415 navigationBar?.let { applyStateToNavigationBar(it, state, linearProgress) } 416 delegate.onLaunchAnimationProgress(state, progress, linearProgress) 481 linearProgress: Float 483 val fadeInProgress = LaunchAnimator.getProgress(TIMINGS, linearProgress, 498 val fadeOutProgress = LaunchAnimator.getProgress(TIMINGS, linearProgress, 0,
|
H A D | DialogLaunchAnimator.kt | 656 linearProgress: Float 658 startViewController.onLaunchAnimationProgress(state, progress, linearProgress) 662 endViewController.onLaunchAnimationProgress(state, progress, linearProgress)
|
H A D | GhostedViewLaunchAnimatorController.kt | 179 linearProgress: Float
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/ |
H A D | SplashScreenExitAnimation.java | 185 void onAnimationProgress(float linearProgress) { in onAnimationProgress() argument 191 final float alphaProgress = Interpolators.ALPHA_OUT.getInterpolation(linearProgress); in onAnimationProgress() 252 void onAnimationProgress(float linearProgress) { in onAnimationProgress() argument 258 final float progress = SHIFT_UP_INTERPOLATOR.getInterpolation(linearProgress); in onAnimationProgress() 346 private void onFadeOutProgress(float linearProgress) { in onFadeOutProgress() argument 348 getProgress(linearProgress, 0 /* delay */, mIconFadeOutDuration)); in onFadeOutProgress() 359 private void onAnimationProgress(float linearProgress) { in onAnimationProgress() argument 360 onFadeOutProgress(linearProgress); in onAnimationProgress() 362 final float revealLinearProgress = getProgress(linearProgress, mAppRevealDelay, in onAnimationProgress() 374 private float getProgress(float linearProgress, long delay, long duration) { in getProgress() argument [all …]
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarLaunchAnimatorController.kt | 40 linearProgress: Float 42 delegate.onLaunchAnimationProgress(state, progress, linearProgress) 43 statusBar.notificationPanelViewController.applyLaunchAnimationProgress(linearProgress)
|
H A D | NotificationPanelViewController.java | 3630 public void applyLaunchAnimationProgress(float linearProgress) { in applyLaunchAnimationProgress() argument 3632 linearProgress, ANIMATION_DELAY_ICON_FADE_IN, 100) == 0.0f; in applyLaunchAnimationProgress()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | ExpandAnimationParameters.kt | 35 var linearProgress = 0f regex 53 Interpolators.FAST_OUT_SLOW_IN.getInterpolation(linearProgress)).toInt() 59 return LaunchAnimator.getProgress(ActivityLaunchAnimator.TIMINGS, linearProgress, delay,
|
H A D | NotificationLaunchAnimatorController.kt | 163 linearProgress: Float 167 params.linearProgress = linearProgress
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/ |
H A D | GhostedViewLaunchAnimatorControllerTest.kt | 39 controller.onLaunchAnimationProgress(state, progress = 0f, linearProgress = 0f)
|
H A D | ActivityLaunchAnimatorTest.kt | 240 linearProgress: Float
|