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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardActionListener.java 22 * Called when the user presses a key. This is sent before the {@link #onCodeInput} is called.
31 * Called when the user releases a key. This is sent after the {@link #onCodeInput} is called.
44 * @param x x-coordinate pixel of touched event. If {@link #onCodeInput} is not called by
48 * @param y y-coordinate pixel of touched event. If {@link #onCodeInput} is not called by
53 public void onCodeInput(int primaryCode, int x, int y);
83 public void onCodeInput(int primaryCode, int x, int y) {}
MoreKeysKeyboardView.java 49 public void onCodeInput(int primaryCode, int x, int y) {
52 mListener.onCodeInput(primaryCode, NOT_A_TOUCH_COORDINATE, NOT_A_TOUCH_COORDINATE);
KeyboardSwitcher.java 342 public void onCodeInput(int code) {
343 mState.onCodeInput(code, isSinglePointer(), mLatinIME.getCurrentAutoCapsState());
PointerTracker.java 271 Log.d(TAG, "onCodeInput: " + Keyboard.printableCode(code) + " text=" + key.mOutputText
288 mListener.onCodeInput(code, x, y);
LatinKeyboardView.java 490 * When enabled, calls to {@link KeyboardActionListener#onCodeInput} will include key
582 mKeyboardActionListener.onCodeInput(primaryCode,
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeyboardStateTestsBase.java 79 mSwitcher.onCodeInput(code, SINGLE);
95 mSwitcher.onCodeInput(code, MULTI);
MockKeyboardSwitcher.java 28 // Argument for {@link KeyboardState#onCodeInput}.
188 public void onCodeInput(int code, boolean isSinglePointer) {
197 mState.onCodeInput(code, isSinglePointer, mAutoCapsState);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 221 mLatinIME.onCodeInput(codePoint, x, y);
225 mLatinIME.onCodeInput(codePoint,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestionsView.java 69 public void onCodeInput(int primaryCode, int x, int y) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardState.java 34 * {@link #onCodeInput(int, boolean, int)}, {@link #onCancelInput(boolean)},
540 public void onCodeInput(int code, boolean isSinglePointer, int autoCaps) {
542 Log.d(TAG, "onCodeInput: code=" + Keyboard.printableCode(code)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java     [all...]

Completed in 238 milliseconds