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.java1276 private int mRepeatCount; field in class:KeyEvent
1356 mRepeatCount = 0;
1379 mRepeatCount = repeat;
1403 mRepeatCount = repeat;
1431 mRepeatCount = repeat;
1461 mRepeatCount = repeat;
1493 mRepeatCount = repeat;
1519 mRepeatCount = 0;
1533 mRepeatCount = origEvent.mRepeatCount;
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp42 jfieldID mRepeatCount; member in struct:android::__anon991
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.java174 private int mRepeatCount = 0; field in class:ValueAnimator
752 mRepeatCount = value;
761 return mRepeatCount;
1080 if (mCurrentIteration < mRepeatCount || mRepeatCount == INFINITE) {
/frameworks/base/libs/androidfw/
H A DInput.cpp138 mRepeatCount = repeatCount;
150 mRepeatCount = from.mRepeatCount;
/frameworks/base/include/androidfw/
H A DInput.h280 inline int32_t getRepeatCount() const { return mRepeatCount; }
313 int32_t mRepeatCount; member in class:android::KeyEvent

Completed in 325 milliseconds