Home | History | Annotate | Download | only in animation

Lines Matching defs:mRepeatCount

164     int mRepeatCount = 0;
251 setRepeatCount(a.getInt(com.android.internal.R.styleable.Animation_repeatCount, mRepeatCount));
461 mRepeatCount = 0;
473 mRepeatCount = 0;
477 // The comparison between mRepeatCount and duration is to catch
479 if (mRepeatCount < 0 || mRepeatCount > durationMillis
480 || (dur*mRepeatCount) > durationMillis) {
483 mRepeatCount = (int)(durationMillis/dur) - 1;
484 if (mRepeatCount < 0) {
485 mRepeatCount = 0;
559 mRepeatCount = repeatCount;
739 return mRepeatCount;
910 if (mRepeatCount == mRepeated || isCanceled()) {
917 if (mRepeatCount > 0) {