Searched refs:mRepeatCount (Results 1 – 8 of 8) sorted by relevance
163 int mRepeatCount = 0; field in Animation248 … setRepeatCount(a.getInt(com.android.internal.R.styleable.Animation_repeatCount, mRepeatCount)); in Animation()455 mRepeatCount = 0; in restrictDuration()467 mRepeatCount = 0; in restrictDuration()473 if (mRepeatCount < 0 || mRepeatCount > durationMillis in restrictDuration()474 || (dur*mRepeatCount) > durationMillis) { in restrictDuration()477 mRepeatCount = (int)(durationMillis/dur) - 1; in restrictDuration()478 if (mRepeatCount < 0) { in restrictDuration()479 mRepeatCount = 0; in restrictDuration()553 mRepeatCount = repeatCount; in setRepeatCount()[all …]
136 mRepeatCount = UINT32_MAX; in PropertyAnimator()138 mRepeatCount = repeatCount; in PropertyAnimator()141 mTotalDuration = ((nsecs_t) mRepeatCount + 1) * mDuration + mStartDelay; in PropertyAnimator()153 iteration = mRepeatCount; in setCurrentPlayTime()168 if ((mLatestFraction == mRepeatCount + 1.0) && (totalFraction >= mRepeatCount + 1.0)) { in setFraction()
42 uint32_t mRepeatCount; variable
1242 private int mRepeatCount; field in KeyEvent1322 mRepeatCount = 0; in KeyEvent()1345 mRepeatCount = repeat; in KeyEvent()1369 mRepeatCount = repeat; in KeyEvent()1397 mRepeatCount = repeat; in KeyEvent()1427 mRepeatCount = repeat; in KeyEvent()1459 mRepeatCount = repeat; in KeyEvent()1485 mRepeatCount = 0; in KeyEvent()1499 mRepeatCount = origEvent.mRepeatCount; in KeyEvent()1525 mRepeatCount = newRepeat; in KeyEvent()[all …]
205 private int mRepeatCount = 0; field in ValueAnimator562 if (mRepeatCount == INFINITE) { in getTotalDuration()565 return mStartDelay + (mDuration * (mRepeatCount + 1)); in getTotalDuration()657 } else if (mRepeatCount != INFINITE) { in clampFraction()658 fraction = Math.min(fraction, mRepeatCount + 1); in clampFraction()670 (iteration < (mRepeatCount + 1) || mRepeatCount == INFINITE)) { in shouldPlayBackward()820 mRepeatCount = value; in setRepeatCount()829 return mRepeatCount; in getRepeatCount()977 if (mRepeatCount == INFINITE) { in start()982 mSeekFraction = 1 + mRepeatCount - mSeekFraction; in start()[all …]
46 jfieldID mRepeatCount; member86 jint repeatCount = env->GetIntField(eventObj, gKeyEventClassInfo.mRepeatCount); in android_view_KeyEvent_toNative()145 gKeyEventClassInfo.mRepeatCount = GetFieldIDOrDie(env, gKeyEventClassInfo.clazz, "mRepeatCount", in register_android_view_KeyEvent()
71 mRepeatCount = repeatCount; in initialize()83 mRepeatCount = from.mRepeatCount; in initialize()
334 inline int32_t getRepeatCount() const { return mRepeatCount; } in getRepeatCount()362 int32_t mRepeatCount; variable