/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 | 278 long currentPlayTime = anim.getCurrentPlayTime(); in startAnimationLocked() 279 if (currentPlayTime > duration) { in startAnimationLocked() 280 currentPlayTime = duration; in startAnimationLocked() 282 applyTransformation(a, mFrameTransaction, currentPlayTime); in startAnimationLocked() 330 private void applyTransformation(RunningAnimation a, Transaction t, long currentPlayTime) { in applyTransformation() argument 331 a.mAnimSpec.apply(t, a.mLeash, currentPlayTime); in applyTransformation()
|
D | FadeAnimationController.java | 107 long currentPlayTime) { in createAnimationSpec() argument 109 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 | Dimmer.java | 360 public void apply(SurfaceControl.Transaction t, SurfaceControl sc, long currentPlayTime) { in apply() argument 361 final float fraction = getFraction(currentPlayTime); in apply()
|
D | ScreenRotationAnimation.java | 715 long currentPlayTime) { in startColorAnimation() 716 final float fraction = getFraction(currentPlayTime); in startColorAnimation()
|
D | WindowState.java | 5893 public void apply(Transaction t, SurfaceControl leash, long currentPlayTime) { in apply() argument 5894 final float fraction = getFraction(currentPlayTime); in apply()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/surfaceeffects/turbulencenoise/ |
D | TurbulenceNoiseView.kt | 86 val timeInSec = updateListener.currentPlayTime * MS_TO_SEC in <lambda>() 128 val timeInSec = updateListener.currentPlayTime * MS_TO_SEC in <lambda>() 173 val timeInSec = updateListener.currentPlayTime * MS_TO_SEC in <lambda>()
|
/frameworks/base/core/java/android/animation/ |
D | AnimatorSet.java | 818 void animateBasedOnPlayTime(long currentPlayTime, long lastPlayTime, boolean inReverse) { 819 if (currentPlayTime < 0 || lastPlayTime < 0) { 834 currentPlayTime = Math.min(currentPlayTime, duration); 835 currentPlayTime = duration - currentPlayTime; 844 if (event.getTime() > currentPlayTime || event.getTime() == DURATION_INFINITE) { 852 || event.mNode.mEndTime > currentPlayTime) { 867 long playTime = getPlayTimeForNode(currentPlayTime, node, inReverse); 877 if (event.getTime() > currentPlayTime 1258 private int findLatestEventIdForTime(long currentPlayTime) { 1263 currentPlayTime = getTotalDuration() - currentPlayTime; [all …]
|
D | ValueAnimator.java | 1284 long currentPlayTime = currentTime - mStartTime; in reverse() local 1285 long timeLeft = getScaledDuration() - currentPlayTime; in reverse() 1455 void animateBasedOnPlayTime(long currentPlayTime, long lastPlayTime, boolean inReverse) { in animateBasedOnPlayTime() argument 1456 if (currentPlayTime < 0 || lastPlayTime < 0) { in animateBasedOnPlayTime() 1463 int iteration = (int) (currentPlayTime / mDuration); in animateBasedOnPlayTime() 1480 if (mRepeatCount != INFINITE && currentPlayTime >= (mRepeatCount + 1) * mDuration) { in animateBasedOnPlayTime() 1484 float fraction = currentPlayTime / (float) mDuration; in animateBasedOnPlayTime()
|
D | Animator.java | 564 void animateBasedOnPlayTime(long currentPlayTime, long lastPlayTime, boolean inReverse) {} in animateBasedOnPlayTime() argument
|
/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/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/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/ |
D | ActivityEmbeddingAnimationAdapter.java | 121 final void onAnimationUpdate(@NonNull SurfaceControl.Transaction t, long currentPlayTime) { in onAnimationUpdate() argument 131 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 | 368 final long currentPlayTime = Math.min(va.getDuration(), va.getCurrentPlayTime()); in startColorAnimation() 369 final float fraction = currentPlayTime / va.getDuration(); in startColorAnimation()
|
D | DefaultTransitionHandler.java | 635 final long currentPlayTime = Math.min(va.getDuration(), va.getCurrentPlayTime()); in startSurfaceAnimation() 637 applyTransformation(currentPlayTime, transaction, leash, anim, transformation, matrix, in startSurfaceAnimation()
|