Home | History | Annotate | Download | only in animation

Lines Matching refs:mRepeatCount

149     int mRepeatCount = 0;
221 setRepeatCount(a.getInt(com.android.internal.R.styleable.Animation_repeatCount, mRepeatCount));
385 mRepeatCount = 0;
397 mRepeatCount = 0;
401 // The comparison between mRepeatCount and duration is to catch
403 if (mRepeatCount < 0 || mRepeatCount > durationMillis
404 || (dur*mRepeatCount) > durationMillis) {
407 mRepeatCount = (int)(durationMillis/dur) - 1;
408 if (mRepeatCount < 0) {
409 mRepeatCount = 0;
482 mRepeatCount = repeatCount;
627 return mRepeatCount;
777 if (mRepeatCount == mRepeated) {
785 if (mRepeatCount > 0) {