/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | Key.java | 56 public final int mCode; field in Key 158 this(params, moreKeySpec.mLabel, null, moreKeySpec.mIconId, moreKeySpec.mCode, in Key() 180 mCode = code; in Key() 314 mCode = mHintLabel.codePointAt(0); in Key() 316 mCode = mLabel.codePointAt(0); in Key() 322 mCode = CODE_OUTPUT_TEXT; in Key() 326 mCode = outputText.codePointAt(0); in Key() 329 mCode = CODE_OUTPUT_TEXT; in Key() 332 mCode = KeySpecParser.toUpperCaseOfCodeForLocale(code, needsToUpperCase, locale); in Key() 367 key.mCode, in computeHashCode() [all …]
|
D | KeyDetector.java | 96 || (distance == minDistance && isOnKey && key.mCode > primaryKey.mCode)) { in detectHitKey() 105 return key != null ? Keyboard.printableCode(key.mCode) : "none"; in printableCode()
|
D | ProximityInfo.java | 140 gridNeighborKeys[i][j].mCode; in createNativeProximityInfo() 159 keyCharCodes[i] = key.mCode; in createNativeProximityInfo() 214 keyCodeMap.put(key.mCode, key); in computeNearestNeighbors() 253 final int code = key.mCode; in fillArrayWithNearestKeyCodes()
|
D | PointerTracker.java | 253 mListener.onPressKey(key.mCode); in callListenerOnPressAndCheckKeyboardLayoutChange() 580 callListenerOnRelease(oldKey, oldKey.mCode, true); in onMoveEvent() 624 callListenerOnRelease(oldKey, oldKey.mCode, true); in onMoveEvent() 762 int code = key.mCode; in detectAndSendKey()
|
D | LatinKeyboardView.java | 204 switch (key.mCode) { in startLongPressTimer() 557 final int primaryCode = parentKey.mCode; in onLongPress() 559 final int embeddedCode = parentKey.mMoreKeys[0].mCode; in onLongPress() 889 if (key.mCode == Keyboard.CODE_SPACE) { in onDrawKeyTopVisuals() 895 } else if (key.mCode == Keyboard.CODE_LANGUAGE_SWITCH) { in onDrawKeyTopVisuals()
|
D | Keyboard.java | 191 if (key.mCode == code) { in getKey() 207 mKeyCache.put(key.mCode, key); in hasKey() 335 if (key.mCode == Keyboard.CODE_SHIFT) { in onAddKey()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | ExpandableDictionary.java | 53 char mCode; field in ExpandableDictionary.Node 215 if (node.mCode == c) { in addWordRec() 223 childNode.mCode = c; in addWordRec() 432 final char c = node.mCode; 561 if (node.mCode == c) { 568 childNode.mCode = c; 649 mLookedUpString[index] = node.mCode; 677 if (node.mCode == currentChar) {
|
D | WordComposer.java | 179 if (key.mCode == codePoint) { in addKeyInfo()
|
D | ResearchLogger.java | 665 builder.append(key.mCode); in latinKeyboardView_setKeyboard()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/ |
D | KeyCodeDescriptionMapper.java | 96 final int code = key.mCode; in getDescriptionForKey() 122 if (key.mCode != Keyboard.CODE_UNSPECIFIED) { in getDescriptionForKey() 268 final int code = key.mCode; in getDescriptionForKeyCode()
|
/packages/apps/Calendar/src/com/android/calendar/event/ |
D | EditEventFragment.java | 641 private int mCode = -1; field in EditEventFragment.Done 644 mCode = code; in setDoneCode() 657 if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null in run() 679 } else if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null && isEmptyNewEvent()) { in run() 683 if ((mCode & Utils.DONE_DELETE) != 0 && mOriginalModel != null in run() 704 if ((mCode & Utils.DONE_EXIT) != 0) { in run() 707 if ((mCode & Utils.DONE_SAVE) != 0) { in run()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | PointerTrackerQueue.java | 100 + Keyboard.printableCode(tracker.getKey().mCode) + "]"); in toString()
|
D | KeySpecParser.java | 64 public final int mCode; field in KeySpecParser.MoreKeySpec 71 mCode = toUpperCaseOfCodeForLocale(getCode(moreKeySpec, codesSet), in MoreKeySpec()
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
D | InputTestsBase.java | 218 if (key.mCode == codePoint) { in type()
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
D | KeySpecParserTests.java | 74 Keyboard.printableCode(spec.mCode)); in assertParser()
|