Searched refs:mRepeatCount (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DAnimation.java156 int mRepeatCount = 0; field in class:Animation
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 <
[all...]
/frameworks/base/core/java/android/view/
H A DKeyEvent.java1294 private int mRepeatCount; field in class:KeyEvent
1374 mRepeatCount = 0;
1397 mRepeatCount = repeat;
1421 mRepeatCount = repeat;
1449 mRepeatCount = repeat;
1479 mRepeatCount = repeat;
1511 mRepeatCount = repeat;
1537 mRepeatCount = 0;
1551 mRepeatCount = origEvent.mRepeatCount;
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp43 jfieldID mRepeatCount; member in struct:android::__anon1037
83 jint repeatCount = env->GetIntField(eventObj, gKeyEventClassInfo.mRepeatCount);
158 GET_FIELD_ID(gKeyEventClassInfo.mRepeatCount, gKeyEventClassInfo.clazz,
159 "mRepeatCount", "I");
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java190 private int mRepeatCount = 0; field in class:ValueAnimator
773 mRepeatCount = value;
782 return mRepeatCount;
1153 if (mCurrentIteration < mRepeatCount || mRepeatCount == INFINITE) {
/frameworks/native/libs/input/
H A DInput.cpp140 mRepeatCount = repeatCount;
152 mRepeatCount = from.mRepeatCount;
/frameworks/native/include/input/
H A DInput.h279 inline int32_t getRepeatCount() const { return mRepeatCount; }
312 int32_t mRepeatCount; member in class:android::KeyEvent

Completed in 136 milliseconds