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

/frameworks/base/core/java/android/animation/
H A DValueAnimator.java271 * When the animation reaches the end and <code>repeatCount</code> is INFINITE
276 * When the animation reaches the end and <code>repeatCount</code> is INFINITE
284 public static final int INFINITE = -1; field in class:ValueAnimator
618 if (mRepeatCount == INFINITE) {
716 } else if (mRepeatCount != INFINITE) {
729 (iteration < (mRepeatCount + 1) || mRepeatCount == INFINITE)) {
876 * greater than 0 or {@link #INFINITE}, the repeat mode will be taken
888 * @return the number of times the animation should repeat, or {@link #INFINITE}
897 * 0 or {@link #INFINITE}. Defaults to {@link #RESTART}.
1040 if (mRepeatCount == INFINITE) {
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java41 public static final int INFINITE = -1; field in class:Animation
537 * 0 or {@link #INFINITE}. Defaults to {@link #RESTART}.
549 * greater than 0 or {@link #INFINITE}, the repeat mode will be taken
557 repeatCount = INFINITE;
735 * @return the number of times the animation should repeat, or {@link #INFINITE}
1183 * for animations with repeat count set to INFINITE.</p>

Completed in 56 milliseconds