Searched refs:newKey (Results 1 – 8 of 8) sorted by relevance
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | PointerTracker.java | 610 final Key newKey = mKeyDetector.detectHitKey(mKeyX, mKeyY); in setKeyDetectorInner() local 611 if (newKey != mCurrentKey) { in setKeyDetectorInner() 762 private Key onMoveToNewKey(final Key newKey, final int x, final int y) { in onMoveToNewKey() argument 763 mCurrentKey = newKey; in onMoveToNewKey() 766 return newKey; in onMoveToNewKey() 1059 private void processSlidingKeyInput(final Key newKey, final int x, final int y, in processSlidingKeyInput() argument 1064 Key key = newKey; in processSlidingKeyInput() 1183 final Key newKey = onMoveKey(x, y); in onMoveEventInternal() local 1187 onGestureMoveEvent(x, y, eventTime, true /* isMajorEvent */, newKey); in onMoveEventInternal() 1195 if (newKey != null) { in onMoveEventInternal() [all …]
|
D | MoreKeysKeyboardView.java | 152 final Key newKey = mKeyDetector.detectHitKey(x, y); in onMoveKeyInternal() local 153 if (newKey != oldKey) { in onMoveKeyInternal() 154 mCurrentKey = newKey; in onMoveKeyInternal() 159 if (newKey != null) { in onMoveKeyInternal() 160 updatePressKeyGraphics(newKey); in onMoveKeyInternal()
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
D | AbstractSyncParser.java | 199 String newKey = getValue(); in parse() local 200 userLog("Parsed key for ", mMailbox.mDisplayName, ": ", newKey); in parse() 201 if (!newKey.equals(mMailbox.mSyncKey)) { in parse() 202 mMailbox.mSyncKey = newKey; in parse() 203 cv.put(MailboxColumns.SYNC_KEY, newKey); in parse()
|
D | FolderSyncParser.java | 250 final String newKey = getValue(); in parse() local 251 if (newKey != null && !resetFolders) { in parse() 252 mSyncKeyChanged = !newKey.equals(mAccount.mSyncKey); in parse() 253 mAccount.mSyncKey = newKey; in parse()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | KeyboardParams.java | 85 public void onAddKey(final Key newKey) { in onAddKey() argument 86 final Key key = (mKeysCache != null) ? mKeysCache.get(newKey) : newKey; in onAddKey()
|
D | NonDistinctMultitouchHelper.java | 83 final Key newKey = mainTracker.getKeyOn(x, y); in processMotionEvent() local 84 if (mOldKey != newKey) { in processMotionEvent()
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
D | SoftKeyboardView.java | 217 SoftKey newKey = mSoftKeyboard.mapToKey(x, y); in onKeyPress() local 218 if (newKey == mSoftKeyDown) moveWithinPreviousKey = true; in onKeyPress() 219 mSoftKeyDown = newKey; in onKeyPress()
|
/packages/apps/Exchange/src/com/android/exchange/eas/ |
D | EasSyncBase.java | 133 final String newKey = getSyncKey(); in performOperation() local 134 if (result == RESULT_MORE_AVAILABLE && key.equals(newKey)) { in performOperation()
|