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

/frameworks/base/core/java/android/animation/
H A DValueAnimator.java246 * When the animation reaches the end and <code>repeatCount</code> is INFINITE
251 * When the animation reaches the end and <code>repeatCount</code> is INFINITE
259 public static final int INFINITE = -1; field in class:ValueAnimator
559 if (mRepeatCount == INFINITE) {
654 } else if (mRepeatCount != INFINITE) {
667 (iteration < (mRepeatCount + 1) || mRepeatCount == INFINITE)) {
811 * greater than 0 or {@link #INFINITE}, the repeat mode will be taken
823 * @return the number of times the animation should repeat, or {@link #INFINITE}
832 * 0 or {@link #INFINITE}. Defaults to {@link #RESTART}.
974 if (mRepeatCount == INFINITE) {
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java40 public static final int INFINITE = -1; field in class:Animation
531 * 0 or {@link #INFINITE}. Defaults to {@link #RESTART}.
543 * greater than 0 or {@link #INFINITE}, the repeat mode will be taken
551 repeatCount = INFINITE;
717 * @return the number of times the animation should repeat, or {@link #INFINITE}
1155 * for animations with repeat count set to INFINITE.</p>

Completed in 332 milliseconds