/frameworks/base/core/java/android/view/ |
D | VerifiedKeyEvent.java | 111 private int mRepeatCount; field in VerifiedKeyEvent 206 this.mRepeatCount = repeatCount; 284 return mRepeatCount; in getRepeatCount() 307 && mRepeatCount == that.mRepeatCount; in equals() 324 _hash = 31 * _hash + mRepeatCount; in hashCode() 341 dest.writeInt(mRepeatCount); in writeToParcel() 372 this.mRepeatCount = repeatCount; in VerifiedKeyEvent()
|
D | KeyEvent.java | 1474 private int mRepeatCount; field in KeyEvent 1694 mRepeatCount = repeat; in KeyEvent() 1726 origEvent.mRepeatCount, origEvent.mHmac == null ? null : origEvent.mHmac.clone(), in KeyEvent() 1758 mRepeatCount = newRepeat; in KeyEvent() 1799 ev.mRepeatCount = repeat; in obtain() 1854 ev.mRepeatCount = other.mRepeatCount; in obtain() 1936 ret.mRepeatCount = newRepeat; in changeTimeRepeat() 1951 this(origEvent, nativeNextId(), origEvent.mEventTime, action, origEvent.mRepeatCount, in KeyEvent() 2782 return mRepeatCount; in getRepeatCount() 3031 if (res && mRepeatCount == 0 && (mFlags&FLAG_START_TRACKING) != 0) { in dispatch() [all …]
|
/frameworks/base/libs/hwui/ |
D | PropertyValuesAnimatorSet.cpp | 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()
|
D | PropertyValuesAnimatorSet.h | 40 uint32_t mRepeatCount; variable
|
/frameworks/base/core/java/android/animation/ |
D | ValueAnimator.java | 227 private int mRepeatCount = 0; field in ValueAnimator 715 if (mRepeatCount == INFINITE) { in getTotalDuration() 718 return mStartDelay + (mDuration * (mRepeatCount + 1)); in getTotalDuration() 813 } else if (mRepeatCount != INFINITE) { in clampFraction() 814 fraction = Math.min(fraction, mRepeatCount + 1); in clampFraction() 826 (iteration < (mRepeatCount + 1) || mRepeatCount == INFINITE)) { in shouldPlayBackward() 979 mRepeatCount = value; in setRepeatCount() 988 return mRepeatCount; in getRepeatCount() 1125 if (mRepeatCount == INFINITE) { in start() 1130 mSeekFraction = 1 + mRepeatCount - mSeekFraction; in start() [all …]
|
/frameworks/base/core/java/android/view/animation/ |
D | Animation.java | 166 int mRepeatCount = 0; field in Animation 263 … setRepeatCount(a.getInt(com.android.internal.R.styleable.Animation_repeatCount, mRepeatCount)); in Animation() 472 mRepeatCount = 0; in restrictDuration() 484 mRepeatCount = 0; in restrictDuration() 490 if (mRepeatCount < 0 || mRepeatCount > durationMillis in restrictDuration() 491 || (dur*mRepeatCount) > durationMillis) { in restrictDuration() 494 mRepeatCount = (int)(durationMillis/dur) - 1; in restrictDuration() 495 if (mRepeatCount < 0) { in restrictDuration() 496 mRepeatCount = 0; in restrictDuration() 570 mRepeatCount = repeatCount; in setRepeatCount() [all …]
|
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/ |
D | BenchmarkState.java | 78 private int mRepeatCount = 0; field in BenchmarkState 148 mRepeatCount = 0; in beginBenchmark() 156 mRepeatCount++; in startNextTestRun() 157 if (mRepeatCount >= REPEAT_COUNT) { in startNextTestRun()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | AnimatedImageDrawable.java | 95 int mRepeatCount = REPEAT_UNDEFINED; field in AnimatedImageDrawable.State 143 if (mState.mRepeatCount != repeatCount) { in setRepeatCount() 144 mState.mRepeatCount = repeatCount; in setRepeatCount() 173 if (mState.mRepeatCount == REPEAT_UNDEFINED) { in getRepeatCount() 174 mState.mRepeatCount = nGetRepeatCount(mState.mNativePtr); in getRepeatCount() 177 return mState.mRepeatCount; in getRepeatCount() 251 final int repeatCount = mState.mRepeatCount; in updateStateFromTypedArray()
|
/frameworks/native/include/input/ |
D | InputEventBuilders.h | 193 mRepeatCount = event.getRepeatCount(); in KeyEventBuilder() 232 mRepeatCount = repeatCount; in repeatCount() 239 mAction, mFlags, mKeyCode, mScanCode, mMetaState, mRepeatCount, mDownTime, in build() 256 int32_t mRepeatCount{0};
|
D | Input.h | 607 inline int32_t getRepeatCount() const { return mRepeatCount; } in getRepeatCount() 632 int32_t mRepeatCount; variable
|
/frameworks/base/services/core/java/com/android/server/vibrator/ |
D | VibrationStats.java | 70 private int mRepeatCount; field in VibrationStats 205 mRepeatCount += loops; in reportRepetition() 336 repeatCount = stats.mRepeatCount; in StatsInfo()
|
/frameworks/base/core/jni/ |
D | android_view_KeyEvent.cpp | 88 jfieldID mRepeatCount; member 132 jint repeatCount = env->GetIntField(eventObj, gKeyEventClassInfo.mRepeatCount); in android_view_KeyEvent_obtainAsCopy() 200 gKeyEventClassInfo.mRepeatCount = GetFieldIDOrDie(env, gKeyEventClassInfo.clazz, "mRepeatCount", in register_android_view_KeyEvent()
|
/frameworks/native/libs/input/ |
D | Input.cpp | 385 mRepeatCount = repeatCount; in initialize() 397 mRepeatCount = from.mRepeatCount; in initialize()
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 1216 Landroid/animation/ValueAnimator;->mRepeatCount:I 16510 Landroid/graphics/drawable/AnimatedImageDrawable$State;->mRepeatCount:I 58466 Landroid/view/animation/Animation;->mRepeatCount:I
|