OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:onCodeInput
(Results
1 - 12
of
12
) 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
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.getCode(), x, y);
138
protected void
onCodeInput
(final int code, final int x, final int y) {
142
mListener.
onCodeInput
(code, x, y);
KeyboardSwitcher.java
328
public void
onCodeInput
(final int code) {
329
mState.
onCodeInput
(code, mLatinIME.getCurrentAutoCapsState());
PointerTracker.java
285
public void
onCodeInput
(final int code, final long eventTime) {
534
Log.d(TAG, String.format("[%d]
onCodeInput
: %4d %4d %s%s%s", mPointerId, x, y,
547
sTimeRecorder.
onCodeInput
(code, eventTime);
551
mListener.
onCodeInput
(code, x, y);
[
all
...]
EmojiPalettesView.java
555
mKeyboardActionListener.
onCodeInput
(code, NOT_A_COORDINATE, NOT_A_COORDINATE);
[
all
...]
MainKeyboardView.java
[
all
...]
/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/keyboard/internal/
MockKeyboardSwitcher.java
29
// Argument for {@link KeyboardState#
onCodeInput
}.
170
public void
onCodeInput
(final int code) {
179
mState.
onCodeInput
(code, mAutoCapsState);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java
214
mLatinIME.
onCodeInput
(codePoint, x, y);
217
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()},
595
public void
onCodeInput
(final int code, final int autoCaps) {
597
Log.d(TAG, "
onCodeInput
: code=" + Constants.printableCode(code)
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java
[
all
...]
Completed in 1543 milliseconds