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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardActionListener.java 25 * 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.mCode, x, y);
138 protected void onCodeInput(final int code, final int x, final int y) {
142 mListener.onCodeInput(code, x, y);
KeyboardSwitcher.java 352 public void onCodeInput(final int code) {
353 mState.onCodeInput(code, mLatinIME.getCurrentAutoCapsState());
PointerTracker.java 271 public void onCodeInput(final int code, final long eventTime) {
481 Log.d(TAG, String.format("[%d] onCodeInput: %4d %4d %s%s%s", mPointerId, x, y,
494 sTimeRecorder.onCodeInput(code, eventTime);
498 mListener.onCodeInput(code, x, y);
    [all...]
MainKeyboardView.java     [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeyboardStateTestsBase.java 74 mSwitcher.onCodeInput(code);
90 mSwitcher.onCodeInput(code);
109 mSwitcher.onCodeInput(code);
MockKeyboardSwitcher.java 29 // Argument for {@link KeyboardState#onCodeInput}.
188 public void onCodeInput(final int code) {
197 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 211 mLatinIME.onCodeInput(codePoint, x, y);
215 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()}, {@link #onCancelInput()},
588 public void onCodeInput(final int code, final int autoCaps) {
590 Log.d(TAG, "onCodeInput: code=" + Constants.printableCode(code)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java     [all...]

Completed in 328 milliseconds