Searched defs:onCodeInput (Results 1 - 8 of 8) 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
59 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat); method in interface:KeyboardActionListener
112 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat) {} method in class:KeyboardActionListener.Adapter
H A DKeyboardSwitcher.java307 public void onCodeInput(final int code, final int currentAutoCapsState, method in class:KeyboardSwitcher
309 mState.onCodeInput(code, currentAutoCapsState, currentRecapitalizeState);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DTypingTimeRecorder.java41 public void onCodeInput(final int code, final long eventTime) { method in class:TypingTimeRecorder
H A DKeyboardState.java32 * {@link #onCodeInput(int,int,int)}, {@link #onFinishSlidingInput(int,int)},
613 public void onCodeInput(final int code, final int currentAutoCapsState, method in class:KeyboardState
616 Log.d(TAG, "onCodeInput: code=" + Constants.printableCode(code)
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DMockKeyboardSwitcher.java29 // Argument for {@link KeyboardState#onCodeInput}.
177 public void onCodeInput(final int code) { method in class:MockKeyboardSwitcher
186 mState.onCodeInput(code, mAutoCapsState, RecapitalizeStatus.NOT_A_RECAPITALIZE_MODE);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
H A DSuggestionStripView.java64 public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat); method in interface:SuggestionStripView.Listener
482 mListener.onCodeInput(Constants.CODE_SHORTCUT,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
H A DInputLogic.java292 // If this is a punctuation picked from the suggestion strip, pass it to onCodeInput
295 // Rely on onCodeInput to do the complicated swapping/stripping logic consistently.
297 return onCodeInput(settingsValues, event, keyboardShiftState,
445 public InputTransaction onCodeInput(final SettingsValues settingsValues, final Event event, method in class:InputLogic
686 // {@link KeyboardSwitcher#onCodeInput(int)}.
714 // {@link KeyboardState#onCodeInput(int,int)}.
718 // handled in {@link KeyboardState#onCodeInput(int,int)}.
1774 * of character in onCodeInput, but since this gets inputted as a whole string we need to
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1333 public void onCodeInput(final int codePoint, final int x, final int y, method in class:LatinIME
1340 // this transformation, it should be done already before calling onCodeInput.
1358 // Still call the *#onCodeInput methods for readability.
1362 mInputLogic.onCodeInput(mSettings.getCurrent(), event,
1366 mKeyboardSwitcher.onCodeInput(codePoint, getCurrentAutoCapsState(),
1395 mKeyboardSwitcher.onCodeInput(Constants.CODE_OUTPUT_TEXT, getCurrentAutoCapsState(),
1688 mInputLogic.onCodeInput(mSettings.getCurrent(), event,

Completed in 173 milliseconds