HomeSort by relevance Sort by last modified time
    Searched refs:currentPlayTime (Results 1 - 21 of 21) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/
FirstFrameAnimatorHelper.java 88 final long currentPlayTime = animation.getCurrentPlayTime();
96 currentPlayTime < animation.getDuration() && !isFinalFrame) {
102 if (frameNum == 0 && currentTime < mStartTime + MAX_DELAY && currentPlayTime > 0) {
113 currentPlayTime > SINGLE_FRAME_MS) {
InterruptibleInOutAnimator.java 65 final long currentPlayTime = mAnimator.getCurrentPlayTime();
78 long duration = mOriginalDuration - currentPlayTime;
  /packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java 63 final long currentPlayTime = mAnimator.getCurrentPlayTime();
76 long duration = mOriginalDuration - currentPlayTime;
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
MultiValueUpdateListener.java 34 final float currentPlayTime = percent * animator.getDuration();
38 float time = Math.max(0, currentPlayTime - prop.mDelay);
  /frameworks/base/services/core/java/com/android/server/wm/
SurfaceAnimationRunner.java 130 applyTransformation(runningAnim, t, 0 /* currentPlayTime */);
173 long currentPlayTime = anim.getCurrentPlayTime();
174 if (currentPlayTime > duration) {
175 currentPlayTime = duration;
177 applyTransformation(a, mFrameTransaction, currentPlayTime);
223 private void applyTransformation(RunningAnimation a, Transaction t, long currentPlayTime) {
227 a.mAnimSpec.apply(t, a.mLeash, currentPlayTime);
LocalAnimationAdapter.java 138 * @param currentPlayTime The current time of the animation.
140 void apply(Transaction t, SurfaceControl leash, long currentPlayTime);
Dimmer.java 368 public void apply(SurfaceControl.Transaction t, SurfaceControl sc, long currentPlayTime) {
369 float alpha = ((float) currentPlayTime / getDuration()) * (mToAlpha - mFromAlpha)
WindowAnimationSpec.java 95 public void apply(Transaction t, SurfaceControl leash, long currentPlayTime) {
98 mAnimation.getTransformation(currentPlayTime, tmp.transformation);
WindowState.java     [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
ValueAnimatorTest.java 162 long currentPlayTime = mValueAnimator.getCurrentPlayTime();
163 assertTrue(currentPlayTime > 0);
174 long currentPlayTime = anim.getCurrentPlayTime();
177 assertEquals(proposedCurrentPlayTime, currentPlayTime);
182 currentPlayTime = delayedAnim.getCurrentPlayTime();
185 assertEquals(proposedCurrentPlayTime, currentPlayTime);
192 long currentPlayTime = anim.getCurrentPlayTime();
195 assertEquals(proposedCurrentPlayTime, currentPlayTime);
199 currentPlayTime = delayedAnim.getCurrentPlayTime();
202 assertEquals(proposedCurrentPlayTime, currentPlayTime);
    [all...]
  /frameworks/base/core/java/android/animation/
ValueAnimator.java     [all...]
AnimatorSet.java 818 void animateBasedOnPlayTime(long currentPlayTime, long lastPlayTime, boolean inReverse) {
819 if (currentPlayTime < 0 || lastPlayTime < 0) {
823 // Clamp currentPlayTime and lastPlayTime
    [all...]
Animator.java 516 void animateBasedOnPlayTime(long currentPlayTime, long lastPlayTime, boolean inReverse) {}
  /frameworks/base/libs/hwui/
Animator.cpp 174 nsecs_t currentPlayTime = mPlayTime;
187 bool changed = currentPlayTime != mPlayTime || prevFramePlayState != mStagingPlayState;
256 nsecs_t currentPlayTime = context.frameTimeMs() - mStartTime;
257 bool finished = updatePlayTime(currentPlayTime);
  /prebuilts/tools/common/m2/repository/com/nineoldandroids/library/2.4.0/
library-2.4.0.jar 
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 454 milliseconds