Home | History | Annotate | Download | only in animation

Lines Matching defs:mRepeatCount

164     int mRepeatCount = 0;
249 setRepeatCount(a.getInt(com.android.internal.R.styleable.Animation_repeatCount, mRepeatCount));
456 mRepeatCount = 0;
468 mRepeatCount = 0;
472 // The comparison between mRepeatCount and duration is to catch
474 if (mRepeatCount < 0 || mRepeatCount > durationMillis
475 || (dur*mRepeatCount) > durationMillis) {
478 mRepeatCount = (int)(durationMillis/dur) - 1;
479 if (mRepeatCount < 0) {
480 mRepeatCount = 0;
554 mRepeatCount = repeatCount;
722 return mRepeatCount;
883 if (mRepeatCount == mRepeated || isCanceled()) {
890 if (mRepeatCount > 0) {