OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:onCodeInput
(Results
1 - 9
of
9
) 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/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/tests/src/com/android/inputmethod/keyboard/internal/
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/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
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java
[
all
...]
Completed in 405 milliseconds