HomeSort by relevance Sort by last modified time
    Searched defs: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 192 public void onReleaseKey(final int code, final boolean withSliding,
194 mState.onReleaseKey(code, withSliding, currentAutoCapsState, currentRecapitalizeState);
PointerTracker.java 326 sListener.onReleaseKey(primaryCode, withSliding);
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
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);
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);
  /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 240 milliseconds