Searched defs:mCurrentIteration (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DValueAnimator.java126 * This variable tracks the current iteration that is playing. When mCurrentIteration exceeds the
129 private int mCurrentIteration = 0; field in class:ValueAnimator
591 mCurrentIteration = iteration;
1007 if (mSeekFraction == 0 && mCurrentIteration == 0) {
1013 mSeekFraction = 1 + mRepeatCount - (mCurrentIteration + mSeekFraction);
1015 mCurrentIteration = (int) mSeekFraction;
1018 if (mCurrentIteration > 0 && mRepeatMode == REVERSE &&
1019 (mCurrentIteration < (mRepeatCount + 1) || mRepeatCount == INFINITE)) {
1023 mPlayingBackwards = (mCurrentIteration % 2) == 0;
1025 mPlayingBackwards = (mCurrentIteration
[all...]

Completed in 55 milliseconds