| /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,
 
 | 
| KeyboardSwitcher.java | 307     public void onCodeInput(final int code, final int currentAutoCapsState, 309         mState.onCodeInput(code, currentAutoCapsState, currentRecapitalizeState);
 
 | 
| PointerTracker.java | 332             Log.d(TAG, String.format("[%d] onCodeInput: %4d %4d %s%s%s", mPointerId, x, y, 341             sTypingTimeRecorder.onCodeInput(code, eventTime);
 346                     sListener.onCodeInput(code, x, y, isKeyRepeat);
 348                     sListener.onCodeInput(code,
 [all...]
 | 
| MainKeyboardView.java | 620             listener.onCodeInput(moreKeyCode, Constants.NOT_A_COORDINATE, [all...]
 | 
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ | 
| TypingTimeRecorder.java | 41     public void onCodeInput(final int code, final long eventTime) { 
 | 
| KeyboardState.java | 32  * {@link #onCodeInput(int,int,int)}, {@link #onFinishSlidingInput(int,int)}, 613     public void onCodeInput(final int code, final int currentAutoCapsState,
 616             Log.d(TAG, "onCodeInput: code=" + Constants.printableCode(code)
 
 | 
| /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}. 177     public void onCodeInput(final int code) {
 186         mState.onCodeInput(code, mAutoCapsState, RecapitalizeStatus.NOT_A_RECAPITALIZE_MODE);
 
 | 
| /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ | 
| InputTestsBase.java | 267             mLatinIME.onCodeInput(codePoint, Constants.NOT_A_COORDINATE, Constants.NOT_A_COORDINATE, 272             mLatinIME.onCodeInput(codePoint, x, y, isKeyRepeat);
 
 | 
| /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,
 510             mKeyboardActionListener.onCodeInput(Constants.CODE_DELETE,
 
 | 
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/ | 
| SuggestionStripView.java | 64         public void onCodeInput(int primaryCode, int x, int y, boolean isKeyRepeat); 482             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 | 292         // 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,
 [all...]
 |