Searched refs:onCodeInput (Results 1 - 11 of 11) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardActionListener.java25 * Called when the user presses a key. This is sent before the {@link #onCodeInput} is called.
34 * Called when the user releases a key. This is sent after the {@link #onCodeInput} is called.
47 * @param x x-coordinate pixel of touched event. If {@link #onCodeInput} is not called by
51 * @param y y-coordinate pixel of touched event. If {@link #onCodeInput} is not called by
56 public void onCodeInput(int primaryCode, int x, int y); method in interface:KeyboardActionListener
100 public void onCodeInput(int primaryCode, int x, int y) {} method in class:KeyboardActionListener.Adapter
H A DMoreKeysKeyboardView.java51 public void onCodeInput(int primaryCode, int x, int y) {
54 mListener.onCodeInput(
H A DKeyboardSwitcher.java349 public void onCodeInput(int code) { method in class:KeyboardSwitcher
350 mState.onCodeInput(code, isSinglePointer(), mLatinIME.getCurrentAutoCapsState());
H A DPointerTracker.java256 public void onCodeInput(final int code, final long eventTime) { method in class:PointerTracker.TimeRecorder
458 Log.d(TAG, String.format("[%d] onCodeInput: %4d %4d %s%s%s", mPointerId, x, y,
471 sTimeRecorder.onCodeInput(code, eventTime);
475 mListener.onCodeInput(code, x, y);
H A DMainKeyboardView.java619 mKeyboardActionListener.onCodeInput(
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardStateTestsBase.java79 mSwitcher.onCodeInput(code, SINGLE);
95 mSwitcher.onCodeInput(code, MULTI);
H A DMockKeyboardSwitcher.java28 // Argument for {@link KeyboardState#onCodeInput}.
188 public void onCodeInput(int code, boolean isSinglePointer) { method in class:MockKeyboardSwitcher
197 mState.onCodeInput(code, isSinglePointer, mAutoCapsState);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DInputTestsBase.java241 mLatinIME.onCodeInput(codePoint, x, y);
245 mLatinIME.onCodeInput(codePoint, Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
H A DMoreSuggestionsView.java69 public void onCodeInput(int primaryCode, int x, int y) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardState.java32 * {@link #onCodeInput(int, boolean, int)}, {@link #onCancelInput(boolean)},
556 public void onCodeInput(int code, boolean isSinglePointer, int autoCaps) { method in class:KeyboardState
558 Log.d(TAG, "onCodeInput: code=" + Keyboard.printableCode(code)
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1340 public void onCodeInput(final int primaryCode, final int x, final int y) { method in class:LatinIME
1425 switcher.onCodeInput(primaryCode);
1458 mKeyboardSwitcher.onCodeInput(Keyboard.CODE_OUTPUT_TEXT);
2094 // If this is a punctuation picked from the suggestion strip, pass it to onCodeInput
2099 // Rely on onCodeInput to do the complicated swapping/stripping logic consistently.
2101 onCodeInput(primaryCode,

Completed in 113 milliseconds