Home | History | Annotate | Download | only in animation

Lines Matching defs:mRepeatCount

156     int mRepeatCount = 0;
241 setRepeatCount(a.getInt(com.android.internal.R.styleable.Animation_repeatCount, mRepeatCount));
448 mRepeatCount = 0;
460 mRepeatCount = 0;
464 // The comparison between mRepeatCount and duration is to catch
466 if (mRepeatCount < 0 || mRepeatCount > durationMillis
467 || (dur*mRepeatCount) > durationMillis) {
470 mRepeatCount = (int)(durationMillis/dur) - 1;
471 if (mRepeatCount < 0) {
472 mRepeatCount = 0;
546 mRepeatCount = repeatCount;
714 return mRepeatCount;
874 if (mRepeatCount == mRepeated) {
881 if (mRepeatCount > 0) {