/frameworks/base/core/java/android/animation/ |
D | AnimatorSet.java | 826 long currentPlayTime, 830 if (currentPlayTime < 0 || lastPlayTime < -1) { 843 currentPlayTime = Math.min(currentPlayTime, duration); 844 currentPlayTime = duration - currentPlayTime; 850 int endIndex = findNextIndex(currentPlayTime, startEndTimes); 855 if (currentPlayTime >= lastPlayTime) { 876 if (currentPlayTime != lastPlayTime) { 877 animateSkipToEnds(currentPlayTime, lastPlayTime); 878 animateValuesInRange(currentPlayTime, lastPlayTime); 898 void animateSkipToEnds(long currentPlayTime, long lastPlayTime) { [all …]
|
D | ValueAnimator.java | 1263 long currentPlayTime = currentTime - mStartTime; in reverse() local 1264 long timeLeft = getScaledDuration() - currentPlayTime; in reverse() 1420 void animateValuesInRange(long currentPlayTime, long lastPlayTime) { in animateValuesInRange() argument 1421 if (currentPlayTime < 0 || lastPlayTime < -1) { in animateValuesInRange() 1427 if (lastPlayTime < 0 || (lastPlayTime == 0 && currentPlayTime > 0)) { in animateValuesInRange() 1430 || (lastPlayTime == duration && currentPlayTime < duration) in animateValuesInRange() 1438 currentPlayTime -= mStartDelay; in animateValuesInRange() 1442 int iteration = Math.max(0, (int) (currentPlayTime / mDuration)); in animateValuesInRange() 1454 if (mRepeatCount != INFINITE && currentPlayTime > (mRepeatCount + 1) * mDuration) { in animateValuesInRange() 1458 float fraction = Math.max(0, currentPlayTime) / (float) mDuration; in animateValuesInRange() [all …]
|
D | Animator.java | 572 void animateValuesInRange(long currentPlayTime, long lastPlayTime) {} in animateValuesInRange() argument 578 void animateSkipToEnds(long currentPlayTime, long lastPlayTime) {} in animateSkipToEnds() argument
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | LocalAnimationAdapter.java | 142 void apply(Transaction t, SurfaceControl leash, long currentPlayTime); in apply() argument 163 default float getFraction(float currentPlayTime) { in getFraction() argument 165 return duration > 0 ? currentPlayTime / duration : 1.0f; in getFraction()
|
D | SurfaceAnimationRunner.java | 291 long currentPlayTime = anim.getCurrentPlayTime(); in startAnimationLocked() 292 if (currentPlayTime > duration) { in startAnimationLocked() 293 currentPlayTime = duration; in startAnimationLocked() 295 applyTransformation(a, mFrameTransaction, currentPlayTime); in startAnimationLocked() 343 private void applyTransformation(RunningAnimation a, Transaction t, long currentPlayTime) { in applyTransformation() argument 344 a.mAnimSpec.apply(t, a.mLeash, currentPlayTime); in applyTransformation()
|
D | FadeAnimationController.java | 113 long currentPlayTime) { in createAnimationSpec() argument 115 animation.getTransformation(currentPlayTime, mTransformation); in createAnimationSpec()
|
D | WindowChangeAnimationSpec.java | 139 public void apply(Transaction t, SurfaceControl leash, long currentPlayTime) { in apply() argument 142 mAnimation.getTransformation(currentPlayTime, tmp.mTransformation); in apply() 146 mAnimation.getTransformation(currentPlayTime, tmp.mTransformation); in apply()
|
D | WindowAnimationSpec.java | 120 public void apply(Transaction t, SurfaceControl leash, long currentPlayTime) { in apply() argument 123 mAnimation.getTransformation(currentPlayTime, tmp.transformation); in apply()
|
D | LegacyDimmer.java | 326 public void apply(SurfaceControl.Transaction t, SurfaceControl sc, long currentPlayTime) { in apply() argument 327 final float fraction = getFraction(currentPlayTime); in apply()
|
D | DimmerAnimationHelper.java | 285 public void apply(SurfaceControl.Transaction t, SurfaceControl sc, long currentPlayTime) { in apply() argument 293 final float fraction = getFraction(currentPlayTime); in apply()
|
D | ScreenRotationAnimation.java | 730 long currentPlayTime) { in startColorAnimation() 731 final float fraction = getFraction(currentPlayTime); in startColorAnimation()
|
D | WindowState.java | 5645 public void apply(Transaction t, SurfaceControl leash, long currentPlayTime) { in apply() argument 5646 final float fraction = getFraction(currentPlayTime); in apply()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/surfaceeffects/turbulencenoise/ |
D | TurbulenceNoiseView.kt | 85 val timeInSec = updateListener.currentPlayTime * MS_TO_SEC in <lambda>() 128 val timeInSec = updateListener.currentPlayTime * MS_TO_SEC in <lambda>() 174 val timeInSec = updateListener.currentPlayTime * MS_TO_SEC in <lambda>()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/surfaceeffects/loadingeffect/ |
D | LoadingEffect.kt | 218 val timeInSec = updateListener.currentPlayTime * MS_TO_SEC in <lambda>() 263 val timeInSec = updateListener.currentPlayTime * MS_TO_SEC in <lambda>() 301 val timeInSec = updateListener.currentPlayTime * MS_TO_SEC in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
D | AuthRippleView.kt | 127 val now = animator.currentPlayTime in <lambda>() 215 val now = animator.currentPlayTime in <lambda>() 228 val now = animator.currentPlayTime in <lambda>() 266 val now = animator.currentPlayTime in <lambda>()
|
/frameworks/base/libs/hwui/ |
D | Animator.cpp | 170 nsecs_t currentPlayTime = mPlayTime; in pushStaging() local 183 bool changed = currentPlayTime != mPlayTime || prevFramePlayState != mStagingPlayState; in pushStaging() 252 nsecs_t currentPlayTime = context.frameTimeMs() - mStartTime; in animate() local 253 bool finished = updatePlayTime(currentPlayTime); in animate()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/ |
D | ActivityEmbeddingAnimationAdapter.java | 138 final void onAnimationUpdate(@NonNull SurfaceControl.Transaction t, long currentPlayTime) { in onAnimationUpdate() argument 141 mAnimation.getTransformation(Math.min(currentPlayTime, mAnimation.getDuration()), in onAnimationUpdate()
|
/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/ |
D | TaskFragmentAnimationAdapter.java | 119 final void onAnimationUpdate(@NonNull SurfaceControl.Transaction t, long currentPlayTime) { in onAnimationUpdate() argument 129 mAnimation.getTransformation(Math.min(currentPlayTime, mAnimation.getDuration()), in onAnimationUpdate()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/surfaceeffects/ripple/ |
D | RippleAnimation.kt | 49 val now = updateListener.currentPlayTime in <lambda>()
|
D | RippleView.kt | 190 val now = updateListener.currentPlayTime in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/taptotransfer/receiver/ |
D | ReceiverChipRippleView.kt | 80 val now = updateListener.currentPlayTime in <lambda>()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/ |
D | ScreenRotationAnimation.java | 359 final long currentPlayTime = Math.min(va.getDuration(), va.getCurrentPlayTime()); in startColorAnimation() 360 final float fraction = currentPlayTime / va.getDuration(); in startColorAnimation()
|
D | DefaultTransitionHandler.java | 819 final long currentPlayTime = Math.min(va.getDuration(), va.getCurrentPlayTime()); in buildSurfaceAnimation() 821 applyTransformation(currentPlayTime, transaction, leash, anim, transformation, matrix, in buildSurfaceAnimation()
|