Searched refs:withSliding (Results 1 – 6 of 6) sorted by relevance
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | KeyboardState.java | 393 public void onReleaseKey(final int code, final boolean withSliding, final int autoCapsFlags, in onReleaseKey() argument 397 + " sliding=" + withSliding in onReleaseKey() 401 onReleaseShift(withSliding, autoCapsFlags, recapitalizeMode); in onReleaseKey() 405 onReleaseSymbol(withSliding, autoCapsFlags, recapitalizeMode); in onReleaseKey() 416 private void onReleaseSymbol(final boolean withSliding, final int autoCapsFlags, in onReleaseSymbol() argument 422 } else if (!withSliding) { in onReleaseSymbol() 538 private void onReleaseShift(final boolean withSliding, final int autoCapsFlags, in onReleaseShift() argument 564 } else if (mAlphabetShiftState.isShiftLockShifted() && withSliding) { in onReleaseShift() 567 } else if (mAlphabetShiftState.isManualShifted() && withSliding) { in onReleaseShift() 572 && !withSliding) { in onReleaseShift() [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
D | MockKeyboardSwitcher.java | 166 public void onReleaseKey(final int code, final boolean withSliding) { in onReleaseKey() argument 167 onReleaseKey(code, withSliding, mAutoCapsState, RecapitalizeStatus.NOT_A_RECAPITALIZE_MODE); in onReleaseKey() 170 public void onReleaseKey(final int code, final boolean withSliding, in onReleaseKey() argument 172 mState.onReleaseKey(code, withSliding, currentAutoCapsState, currentRecapitalizeState); in onReleaseKey()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | KeyboardActionListener.java | 42 public void onReleaseKey(int primaryCode, boolean withSliding); in onReleaseKey() argument 110 public void onReleaseKey(int primaryCode, boolean withSliding) {} in onReleaseKey() argument
|
D | KeyboardSwitcher.java | 201 public void onReleaseKey(final int code, final boolean withSliding, in onReleaseKey() argument 203 mState.onReleaseKey(code, withSliding, currentAutoCapsState, currentRecapitalizeState); in onReleaseKey()
|
D | PointerTracker.java | 310 final boolean withSliding) { in callListenerOnRelease() argument 319 withSliding ? " sliding" : "", ignoreModifierKey ? " ignoreModifier" : "", in callListenerOnRelease() 326 sListener.onReleaseKey(primaryCode, withSliding); in callListenerOnRelease()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | LatinIME.java | 1738 public void onReleaseKey(final int primaryCode, final boolean withSliding) { in onReleaseKey() argument 1739 mKeyboardSwitcher.onReleaseKey(primaryCode, withSliding, getCurrentAutoCapsState(), in onReleaseKey()
|