Home
last modified time | relevance | path

Searched refs:currentKey (Results 1 – 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
DEmojiPageKeyboardView.java144 final Key currentKey = mCurrentKey; in releaseCurrentKey() local
145 if (currentKey == null) { in releaseCurrentKey()
148 currentKey.onReleased(); in releaseCurrentKey()
149 invalidateKey(currentKey); in releaseCurrentKey()
151 mListener.onReleaseKey(currentKey); in releaseCurrentKey()
187 final Key currentKey = mCurrentKey; in onSingleTapUp() local
192 if (key == currentKey && pendingKeyDown != null) { in onSingleTapUp()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DPointerTracker.java1023 final Key currentKey = mCurrentKey; in onUpEventInternal() local
1028 setReleasedKeyGraphics(currentKey); in onUpEventInternal()
1041 if (currentKey != null) { in onUpEventInternal()
1042 callListenerOnRelease(currentKey, currentKey.getCode(), true /* withSliding */); in onUpEventInternal()
1055 if (currentKey != null && currentKey.isRepeatable() in onUpEventInternal()
1056 && (currentKey.getCode() == currentRepeatingKeyCode) && !isInDraggingFinger) { in onUpEventInternal()
1059 detectAndSendKey(currentKey, mKeyX, mKeyY, eventTime); in onUpEventInternal()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
DExpectedKeyboardBuilder.java93 final ExpectedKey currentKey = keys[columnIndex]; in replaceKeyOf() local
94 if (!currentKey.getVisual().equalsTo(visual)) { in replaceKeyOf()
98 final ExpectedKey[] replacingKeys = job.replacingKeys(currentKey); in replaceKeyOf()