HomeSort by relevance Sort by last modified time
    Searched refs:onCodeInput (Results 1 - 10 of 10) 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
59 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat);
112 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat) {}
MoreKeysKeyboardView.java 201 mListener.onCodeInput(code, x, y, false /* isKeyRepeat */);
203 mListener.onCodeInput(code, Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE,
PointerTracker.java 284 Log.d(TAG, String.format("[%d] onCodeInput: %4d %4d %s%s%s", mPointerId, x, y,
293 sTypingTimeRecorder.onCodeInput(code, eventTime);
298 sListener.onCodeInput(code, x, y, isKeyRepeat);
300 sListener.onCodeInput(code,
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
TypingTimeRecorder.java 41 public void onCodeInput(final int code, final long eventTime) {
  /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 178 public void onCodeInput(final int code) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiPalettesView.java 325 mKeyboardActionListener.onCodeInput(code, NOT_A_COORDINATE, NOT_A_COORDINATE,
354 mKeyboardActionListener.onCodeInput(code, NOT_A_COORDINATE, NOT_A_COORDINATE,
476 mKeyboardActionListener.onCodeInput(Constants.CODE_DELETE,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripView.java 63 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat);
454 mListener.onCodeInput(Constants.CODE_SHORTCUT,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
InputLogic.java 278 // If this is a punctuation picked from the suggestion strip, pass it to onCodeInput
284 // Rely on onCodeInput to do the complicated swapping/stripping logic consistently.
286 return onCodeInput(settingsValues, event, keyboardShiftState,
437 public InputTransaction onCodeInput(final SettingsValues settingsValues,
    [all...]

Completed in 261 milliseconds