Searched defs:mRepeatCount (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp46 jfieldID mRepeatCount; member in struct:android::__anon1130
86 jint repeatCount = env->GetIntField(eventObj, gKeyEventClassInfo.mRepeatCount);
145 gKeyEventClassInfo.mRepeatCount = GetFieldIDOrDie(env, gKeyEventClassInfo.clazz, "mRepeatCount",
/frameworks/base/libs/hwui/
H A DPropertyValuesAnimatorSet.h42 uint32_t mRepeatCount; member in class:android::uirenderer::PropertyAnimator
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
H A DBenchmarkState.java77 private int mRepeatCount = 0; field in class:BenchmarkState
163 mRepeatCount = 0;
171 mRepeatCount++;
172 if (mRepeatCount >= REPEAT_COUNT) {
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java143 * Tracks the overall fraction of the animation, ranging from 0 to mRepeatCount + 1
212 private int mRepeatCount = 0; field in class:ValueAnimator
598 if (mRepeatCount == INFINITE) {
601 return mStartDelay + (mDuration * (mRepeatCount + 1));
659 * in the range of [0, mRepeatCount + 1]. Both current iteration and fraction in the current
687 * Clamps fraction into the correct range: [0, mRepeatCount + 1]. If repeat count is infinite,
691 * @return fraction clamped into the range of [0, mRepeatCount + 1]
696 } else if (mRepeatCount != INFINITE) {
697 fraction = Math.min(fraction, mRepeatCount + 1);
709 (iteration < (mRepeatCount
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java164 int mRepeatCount = 0; field in class:Animation
249 setRepeatCount(a.getInt(com.android.internal.R.styleable.Animation_repeatCount, mRepeatCount));
456 mRepeatCount = 0;
468 mRepeatCount = 0;
472 // The comparison between mRepeatCount and duration is to catch
474 if (mRepeatCount < 0 || mRepeatCount > durationMillis
475 || (dur*mRepeatCount) > durationMillis) {
478 mRepeatCount = (int)(durationMillis/dur) - 1;
479 if (mRepeatCount <
[all...]
/frameworks/native/include/input/
H A DInput.h334 inline int32_t getRepeatCount() const { return mRepeatCount; }
362 int32_t mRepeatCount; member in class:android::KeyEvent
/frameworks/base/core/java/android/view/
H A DKeyEvent.java1242 private int mRepeatCount; field in class:KeyEvent
1322 mRepeatCount = 0;
1345 mRepeatCount = repeat;
1369 mRepeatCount = repeat;
1397 mRepeatCount = repeat;
1427 mRepeatCount = repeat;
1459 mRepeatCount = repeat;
1485 mRepeatCount = 0;
1499 mRepeatCount = origEvent.mRepeatCount;
[all...]

Completed in 131 milliseconds