Searched refs:onReleaseKey (Results 1 - 10 of 10) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardActionListener.java42 public void onReleaseKey(int primaryCode, boolean withSliding); method in interface:KeyboardActionListener
110 public void onReleaseKey(int primaryCode, boolean withSliding) {} method in class:KeyboardActionListener.Adapter
H A DKeyboardSwitcher.java193 public void onReleaseKey(final int code, final boolean withSliding, method in class:KeyboardSwitcher
195 mState.onReleaseKey(code, withSliding, currentAutoCapsState, currentRecapitalizeState);
H A DMainKeyboardView.java622 listener.onReleaseKey(moreKeyCode, false /* withSliding */);
630 listener.onReleaseKey(code, false /* withSliding */);
H A DPointerTracker.java374 sListener.onReleaseKey(primaryCode, withSliding);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardStateTestsBase.java109 mSwitcher.onReleaseKey(code, NOT_SLIDING);
144 mSwitcher.onReleaseKey(code, NOT_SLIDING);
170 mSwitcher.onReleaseKey(code, SLIDING);
184 mSwitcher.onReleaseKey(code, NOT_SLIDING);
H A DMockKeyboardSwitcher.java26 // Argument for {@link KeyboardState#onPressKey} and {@link KeyboardState#onReleaseKey}.
165 public void onReleaseKey(final int code, final boolean withSliding) { method in class:MockKeyboardSwitcher
166 onReleaseKey(code, withSliding, mAutoCapsState, RecapitalizeStatus.NOT_A_RECAPITALIZE_MODE);
169 public void onReleaseKey(final int code, final boolean withSliding, method in class:MockKeyboardSwitcher
171 mState.onReleaseKey(code, withSliding, currentAutoCapsState, currentRecapitalizeState);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
H A DEmojiPageKeyboardView.java46 public void onReleaseKey(Key key); method in interface:EmojiPageKeyboardView.OnKeyEventListener
53 public void onReleaseKey(final Key key) {}
151 mListener.onReleaseKey(currentKey);
200 mListener.onReleaseKey(key);
206 mListener.onReleaseKey(key);
H A DEmojiPalettesView.java293 * {@link KeyboardActionListener#onPressKey}. {@link KeyboardActionListener#onReleaseKey} will
327 mKeyboardActionListener.onReleaseKey(code, false /* withSliding */);
347 public void onReleaseKey(final Key key) { method in class:EmojiPalettesView
357 mKeyboardActionListener.onReleaseKey(code, false /* withSliding */);
512 mKeyboardActionListener.onReleaseKey(
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardState.java31 * {@link #onPressKey(int,boolean,int,int)}, {@link #onReleaseKey(int,boolean,int,int)},
359 // Nothing to do here. See {@link #onReleaseKey(int,boolean)}.
384 public void onReleaseKey(final int code, final boolean withSliding, method in class:KeyboardState
387 Log.d(TAG, "onReleaseKey: code=" + Constants.printableCode(code)
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1650 // release matching call is {@link #onReleaseKey(int,boolean)} below.
1662 public void onReleaseKey(final int primaryCode, final boolean withSliding) { method in class:LatinIME
1663 mKeyboardSwitcher.onReleaseKey(primaryCode, withSliding, getCurrentAutoCapsState(),

Completed in 110 milliseconds