OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:onReleaseKey
(Results
1 - 9
of
9
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardActionListener.java
42
public void
onReleaseKey
(int primaryCode, boolean withSliding);
110
public void
onReleaseKey
(int primaryCode, boolean withSliding) {}
KeyboardSwitcher.java
197
public void
onReleaseKey
(final int code, final boolean withSliding,
199
mState.
onReleaseKey
(code, withSliding, currentAutoCapsState, currentRecapitalizeState);
PointerTracker.java
326
sListener.
onReleaseKey
(primaryCode, withSliding);
[
all
...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeyboardStateTestsBase.java
109
mSwitcher.
onReleaseKey
(code, NOT_SLIDING);
144
mSwitcher.
onReleaseKey
(code, NOT_SLIDING);
170
mSwitcher.
onReleaseKey
(code, SLIDING);
184
mSwitcher.
onReleaseKey
(code, NOT_SLIDING);
MockKeyboardSwitcher.java
27
// Argument for {@link KeyboardState#onPressKey} and {@link KeyboardState#
onReleaseKey
}.
166
public void
onReleaseKey
(final int code, final boolean withSliding) {
167
onReleaseKey
(code, withSliding, mAutoCapsState, RecapitalizeStatus.NOT_A_RECAPITALIZE_MODE);
170
public void
onReleaseKey
(final int code, final boolean withSliding,
172
mState.
onReleaseKey
(code, withSliding, currentAutoCapsState, currentRecapitalizeState);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiPageKeyboardView.java
46
public void
onReleaseKey
(Key key);
53
public void
onReleaseKey
(final Key key) {}
145
mListener.
onReleaseKey
(releasedKey);
EmojiPalettesView.java
293
* {@link KeyboardActionListener#onPressKey}. {@link KeyboardActionListener#
onReleaseKey
} will
327
mKeyboardActionListener.
onReleaseKey
(code, false /* withSliding */);
347
public void
onReleaseKey
(final Key key) {
357
mKeyboardActionListener.
onReleaseKey
(code, false /* withSliding */);
478
mKeyboardActionListener.
onReleaseKey
(Constants.CODE_DELETE, false /* withSliding */);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardState.java
33
* {@link #onPressKey(int,boolean,int,int)}, {@link #
onReleaseKey
(int,boolean,int,int)},
368
// Nothing to do here. See {@link #
onReleaseKey
(int,boolean)}.
393
public void
onReleaseKey
(final int code, final boolean withSliding, final int autoCapsFlags,
396
Log.d(TAG, "
onReleaseKey
: code=" + Constants.printableCode(code)
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java
[
all
...]
Completed in 95 milliseconds