HomeSort by relevance Sort by last modified time
    Searched refs:onCodeInput (Results 1 - 13 of 13) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardActionListener.java 24 * 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);
110 public void onCodeInput(int primaryCode, int x, int y) {}
MoreKeysKeyboardView.java 130 onCodeInput(mCurrentKey.getCode(), x, y);
138 protected void onCodeInput(final int code, final int x, final int y) {
142 mListener.onCodeInput(code, x, y);
KeyboardSwitcher.java 315 public void onCodeInput(final int code) {
316 mState.onCodeInput(code, mLatinIME.getCurrentAutoCapsState());
PointerTracker.java 285 public void onCodeInput(final int code, final long eventTime) {
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);
    [all...]
EmojiPalettesView.java 555 mKeyboardActionListener.onCodeInput(code, NOT_A_COORDINATE, NOT_A_COORDINATE);
    [all...]
MainKeyboardView.java     [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeyboardStateTestsBase.java 108 mSwitcher.onCodeInput(code);
143 mSwitcher.onCodeInput(code);
183 mSwitcher.onCodeInput(code);
211 mSwitcher.onCodeInput(Constants.CODE_CAPSLOCK);
MockKeyboardSwitcher.java 29 // Argument for {@link KeyboardState#onCodeInput}.
170 public void onCodeInput(final int code) {
179 mState.onCodeInput(code, mAutoCapsState);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
EventInterpreter.java 122 mLatinIme.onCodeInput(currentlyProcessingEvent.mCodePoint,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestionsView.java 62 public void onCodeInput(final int code, final int x, final int y) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 214 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/
KeyboardState.java 32 * {@link #onCodeInput(int,int)}, {@link #onFinishSlidingInput()},
595 public void onCodeInput(final int code, final int autoCaps) {
597 Log.d(TAG, "onCodeInput: code=" + Constants.printableCode(code)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java     [all...]

Completed in 797 milliseconds