Home
last modified time | relevance | path

Searched refs:repeatCount (Results 1 – 5 of 5) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DPointerTracker.java245 final int repeatCount) { in callListenerOnPressAndCheckKeyboardLayoutChange() argument
259 repeatCount > 0 ? " repeatCount=" + repeatCount : "")); in callListenerOnPressAndCheckKeyboardLayoutChange()
265 sListener.onPressKey(key.getCode(), repeatCount, getActivePointerTrackerCount() == 1); in callListenerOnPressAndCheckKeyboardLayoutChange() local
1170 public void onKeyRepeat(final int code, final int repeatCount) { in onKeyRepeat() argument
1178 final int nextRepeatCount = repeatCount + 1; in onKeyRepeat()
1180 callListenerOnPressAndCheckKeyboardLayoutChange(key, repeatCount); in onKeyRepeat()
1185 private void startKeyRepeatTimer(final int repeatCount) { in startKeyRepeatTimer() argument
1187 (repeatCount == 1) ? sParams.mKeyRepeatStartTimeout : sParams.mKeyRepeatInterval; in startKeyRepeatTimer()
1188 sTimerProxy.startKeyRepeatTimerOf(this, repeatCount, delay); in startKeyRepeatTimer()
DKeyboardActionListener.java32 public void onPressKey(int primaryCode, int repeatCount, boolean isSinglePointer); in onPressKey() argument
108 public void onPressKey(int primaryCode, int repeatCount, boolean isSinglePointer) {} in onPressKey() argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DLatinIME.java1597 private void hapticAndAudioFeedback(final int code, final int repeatCount) { in hapticAndAudioFeedback() argument
1603 if (repeatCount > 0) { in hapticAndAudioFeedback()
1610 if (repeatCount % PERIOD_FOR_AUDIO_AND_HAPTIC_FEEDBACK_IN_KEY_REPEAT == 0) { in hapticAndAudioFeedback()
1616 if (repeatCount == 0) { in hapticAndAudioFeedback()
1626 public void onPressKey(final int primaryCode, final int repeatCount, in onPressKey() argument
1630 hapticAndAudioFeedback(primaryCode, repeatCount); in onPressKey()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DTimerProxy.java43 public void startKeyRepeatTimerOf(@Nonnull PointerTracker tracker, int repeatCount, int delay); in startKeyRepeatTimerOf() argument
110 public void startKeyRepeatTimerOf(@Nonnull PointerTracker tracker, int repeatCount, in startKeyRepeatTimerOf() argument
DTimerHandler.java86 public void startKeyRepeatTimerOf(@Nonnull final PointerTracker tracker, final int repeatCount, in startKeyRepeatTimerOf() argument
93 obtainMessage(MSG_REPEAT_KEY, key.getCode(), repeatCount, tracker), delay); in startKeyRepeatTimerOf()