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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardActionListener.java32 public void onPressKey(int primaryCode, int repeatCount, boolean isSinglePointer); method in interface:KeyboardActionListener
108 public void onPressKey(int primaryCode, int repeatCount, boolean isSinglePointer) {} method in class:KeyboardActionListener.Adapter
H A DKeyboardSwitcher.java187 public void onPressKey(final int code, final boolean isSinglePointer, method in class:KeyboardSwitcher
189 mState.onPressKey(code, isSinglePointer, currentAutoCapsState, currentRecapitalizeState);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
H A DEmojiPageKeyboardView.java45 public void onPressKey(Key key); method in interface:EmojiPageKeyboardView.OnKeyEventListener
51 public void onPressKey(final Key key) {}
153 mListener.onPressKey(pressedKey);
H A DEmojiPalettesView.java293 * {@link KeyboardActionListener#onPressKey}. {@link KeyboardActionListener#onReleaseKey} will
306 mKeyboardActionListener.onPressKey(
336 public void onPressKey(final Key key) { method in class:EmojiPalettesView
338 mKeyboardActionListener.onPressKey(code, 0 /* repeatCount */, true /* isSinglePointer */);
470 mKeyboardActionListener.onPressKey(Constants.CODE_DELETE,
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DMockKeyboardSwitcher.java27 // Argument for {@link KeyboardState#onPressKey} and {@link KeyboardState#onReleaseKey}.
161 public void onPressKey(final int code, final boolean isSinglePointer) { method in class:MockKeyboardSwitcher
162 mState.onPressKey(code, isSinglePointer, mAutoCapsState,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardState.java33 * {@link #onPressKey(int,boolean,int,int)}, {@link #onReleaseKey(int,boolean,int,int)},
353 public void onPressKey(final int code, final boolean isSinglePointer, final int autoCapsFlags, method in class:KeyboardState
356 Log.d(TAG, "onPressKey: code=" + Constants.printableCode(code)
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1622 public void onPressKey(final int primaryCode, final int repeatCount, method in class:LatinIME
1624 mKeyboardSwitcher.onPressKey(primaryCode, isSinglePointer, getCurrentAutoCapsState(),
1630 // press matching call is {@link #onPressKey(int,int,boolean)} above.

Completed in 182 milliseconds