Searched refs:inReverse (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/animation/ |
D | ValueAnimator.java | 709 private float getCurrentIterationFraction(float fraction, boolean inReverse) { in getCurrentIterationFraction() argument 713 return shouldPlayBackward(iteration, inReverse) ? 1f - currentFraction : currentFraction; in getCurrentIterationFraction() 737 private boolean shouldPlayBackward(int iteration, boolean inReverse) { in shouldPlayBackward() argument 742 if (inReverse) { in shouldPlayBackward() 748 return inReverse; in shouldPlayBackward() 1086 void startWithoutPulsing(boolean inReverse) { in startWithoutPulsing() argument 1088 if (inReverse) { in startWithoutPulsing() 1364 void animateBasedOnPlayTime(long currentPlayTime, long lastPlayTime, boolean inReverse) { in animateBasedOnPlayTime() argument 1390 skipToEndValue(inReverse); in animateBasedOnPlayTime() 1394 fraction = getCurrentIterationFraction(fraction, inReverse); in animateBasedOnPlayTime() [all …]
|
D | AnimatorSet.java | 688 void startWithoutPulsing(boolean inReverse) { 689 start(inReverse, false); 703 private void start(boolean inReverse, boolean selfPulse) { 720 if (inReverse && !canReverse()) { 724 mReversing = inReverse; 737 tmpListeners.get(i).onAnimationStart(this, inReverse); 781 void skipToEndValue(boolean inReverse) { 792 if (inReverse) { 818 void animateBasedOnPlayTime(long currentPlayTime, long lastPlayTime, boolean inReverse) { 828 if (inReverse) { [all …]
|
D | Animator.java | 485 void startWithoutPulsing(boolean inReverse) { in startWithoutPulsing() argument 486 if (inReverse) { in startWithoutPulsing() 501 void skipToEndValue(boolean inReverse) {} in skipToEndValue() argument 518 void animateBasedOnPlayTime(long currentPlayTime, long lastPlayTime, boolean inReverse) {} in animateBasedOnPlayTime() argument
|