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.java1290 private int mRepeatCount; field in class:KeyEvent
1370 mRepeatCount = 0;
1393 mRepeatCount = repeat;
1417 mRepeatCount = repeat;
1445 mRepeatCount = repeat;
1475 mRepeatCount = repeat;
1507 mRepeatCount = repeat;
1533 mRepeatCount = 0;
1547 mRepeatCount = origEvent.mRepeatCount;
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp42 jfieldID mRepeatCount; member in struct:android::__anon1018
82 jint repeatCount = env->GetIntField(eventObj, gKeyEventClassInfo.mRepeatCount);
157 GET_FIELD_ID(gKeyEventClassInfo.mRepeatCount, gKeyEventClassInfo.clazz,
158 "mRepeatCount", "I");
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java176 private int mRepeatCount = 0; field in class:ValueAnimator
759 mRepeatCount = value;
768 return mRepeatCount;
1093 if (mCurrentIteration < mRepeatCount || mRepeatCount == INFINITE) {
/frameworks/base/libs/androidfw/
H A DInput.cpp142 mRepeatCount = repeatCount;
154 mRepeatCount = from.mRepeatCount;
/frameworks/base/include/androidfw/
H A DInput.h283 inline int32_t getRepeatCount() const { return mRepeatCount; }
316 int32_t mRepeatCount; member in class:android::KeyEvent

Completed in 175 milliseconds