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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardActionListener.java24 * Called when the user presses a key. This is sent before the {@link #onCodeInput} is called.
35 * Called when the user releases a key. This is sent after the {@link #onCodeInput} is called.
48 * @param x x-coordinate pixel of touched event. If {@link #onCodeInput} is not called by
52 * @param y y-coordinate pixel of touched event. If {@link #onCodeInput} is not called by
57 public void onCodeInput(int primaryCode, int x, int y); method in interface:KeyboardActionListener
110 public void onCodeInput(int primaryCode, int x, int y) {} method in class:KeyboardActionListener.Adapter
H A DMoreKeysKeyboardView.java130 onCodeInput(mCurrentKey.getCode(), x, y);
138 protected void onCodeInput(final int code, final int x, final int y) { method in class:MoreKeysKeyboardView
142 mListener.onCodeInput(code, x, y);
H A DKeyboardSwitcher.java328 public void onCodeInput(final int code) { method in class:KeyboardSwitcher
329 mState.onCodeInput(code, mLatinIME.getCurrentAutoCapsState());
H A DPointerTracker.java285 public void onCodeInput(final int code, final long eventTime) { method in class:PointerTracker.TimeRecorder
534 Log.d(TAG, String.format("[%d] onCodeInput: %4d %4d %s%s%s", mPointerId, x, y,
547 sTimeRecorder.onCodeInput(code, eventTime);
551 mListener.onCodeInput(code, x, y);
H A DEmojiPalettesView.java555 mKeyboardActionListener.onCodeInput(code, NOT_A_COORDINATE, NOT_A_COORDINATE);
801 mKeyboardActionListener.onCodeInput(
H A DMainKeyboardView.java945 listener.onCodeInput(moreKeyCode,
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardStateTestsBase.java108 mSwitcher.onCodeInput(code);
143 mSwitcher.onCodeInput(code);
183 mSwitcher.onCodeInput(code);
211 mSwitcher.onCodeInput(Constants.CODE_CAPSLOCK);
H A DMockKeyboardSwitcher.java29 // Argument for {@link KeyboardState#onCodeInput}.
170 public void onCodeInput(final int code) { method in class:MockKeyboardSwitcher
179 mState.onCodeInput(code, mAutoCapsState);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
H A DEventInterpreter.java122 mLatinIme.onCodeInput(currentlyProcessingEvent.mCodePoint,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
H A DMoreSuggestionsView.java62 public void onCodeInput(final int code, final int x, final int y) { method in class:MoreSuggestionsView
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DInputTestsBase.java214 mLatinIME.onCodeInput(codePoint, x, y);
217 mLatinIME.onCodeInput(codePoint, Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardState.java32 * {@link #onCodeInput(int,int)}, {@link #onFinishSlidingInput()},
595 public void onCodeInput(final int code, final int autoCaps) { method in class:KeyboardState
597 Log.d(TAG, "onCodeInput: code=" + Constants.printableCode(code)
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1603 public void onCodeInput(final int primaryCode, final int x, final int y) { method in class:LatinIME
1646 // {@link KeyboardSwitcher#onCodeInput(int)}.
1669 // {@link KeyboardState#onCodeInput(int,int)}.
1701 switcher.onCodeInput(primaryCode);
1780 mKeyboardSwitcher.onCodeInput(Constants.CODE_OUTPUT_TEXT);
2705 // If this is a punctuation picked from the suggestion strip, pass it to onCodeInput
2710 // Rely on onCodeInput to do the complicated swapping/stripping logic consistently.
2712 onCodeInput(primaryCode,

Completed in 850 milliseconds