Searched refs:withSliding (Results 1 – 6 of 6) sorted by relevance
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | KeyboardState.java | 384 public void onReleaseKey(final int code, final boolean withSliding, in onReleaseKey() argument 388 + " sliding=" + withSliding + " " + this); in onReleaseKey() 391 onReleaseShift(withSliding, currentAutoCapsState, currentRecapitalizeState); in onReleaseKey() 395 onReleaseSymbol(withSliding, currentAutoCapsState, currentRecapitalizeState); in onReleaseKey() 406 private void onReleaseSymbol(final boolean withSliding, final int currentAutoCapsState, in onReleaseSymbol() argument 412 } else if (!withSliding) { in onReleaseSymbol() 528 private void onReleaseShift(final boolean withSliding, final int currentAutoCapsState, in onReleaseShift() argument 555 } else if (mAlphabetShiftState.isShiftLockShifted() && withSliding) { in onReleaseShift() 558 } else if (mAlphabetShiftState.isManualShifted() && withSliding) { in onReleaseShift() 563 && !withSliding) { in onReleaseShift() [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
D | MockKeyboardSwitcher.java | 165 public void onReleaseKey(final int code, final boolean withSliding) { in onReleaseKey() argument 166 onReleaseKey(code, withSliding, mAutoCapsState, RecapitalizeStatus.NOT_A_RECAPITALIZE_MODE); in onReleaseKey() 169 public void onReleaseKey(final int code, final boolean withSliding, in onReleaseKey() argument 171 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 | 193 public void onReleaseKey(final int code, final boolean withSliding, in onReleaseKey() argument 195 mState.onReleaseKey(code, withSliding, currentAutoCapsState, currentRecapitalizeState); in onReleaseKey()
|
D | PointerTracker.java | 358 final boolean withSliding) { in callListenerOnRelease() argument 367 withSliding ? " sliding" : "", ignoreModifierKey ? " ignoreModifier" : "", in callListenerOnRelease() 374 sListener.onReleaseKey(primaryCode, withSliding); in callListenerOnRelease()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | LatinIME.java | 1662 public void onReleaseKey(final int primaryCode, final boolean withSliding) { in onReleaseKey() argument 1663 mKeyboardSwitcher.onReleaseKey(primaryCode, withSliding, getCurrentAutoCapsState(), in onReleaseKey()
|