Searched defs:mCode (Results 1 - 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMoreKeySpec.java27 public final int mCode; field in class:MoreKeySpec
41 mCode = Keyboard.CODE_OUTPUT_TEXT;
44 mCode = code;
54 hashCode = 31 + mCode;
66 return mCode == other.mCode
78 final String output = (mCode == Keyboard.CODE_OUTPUT_TEXT ? mOutputText
79 : Keyboard.printableCode(mCode));
80 if (StringUtils.codePointCount(label) == 1 && label.codePointAt(0) == mCode) {
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventFragment.java638 private int mCode = -1; field in class:EditEventFragment.Done
641 mCode = code;
654 if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null
676 } else if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null && isEmptyNewEvent()) {
680 if ((mCode & Utils.DONE_DELETE) != 0 && mOriginalModel != null
701 if ((mCode & Utils.DONE_EXIT) != 0) {
704 if ((mCode & Utils.DONE_SAVE) != 0) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableDictionary.java53 char mCode; field in class:ExpandableDictionary.Node
215 if (node.mCode == c) {
223 childNode.mCode = c;
452 final char c = node.mCode;
583 if (node.mCode == c) {
590 childNode.mCode = c;
654 mLookedUpString[index] = node.mCode;
686 if (node.mCode == currentChar) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKey.java61 public final int mCode; field in class:Key
177 this(params, moreKeySpec.mLabel, null, moreKeySpec.mIconId, moreKeySpec.mCode,
202 mCode = code;
332 mCode = mHintLabel.codePointAt(0);
334 mCode = mLabel.codePointAt(0);
340 mCode = CODE_OUTPUT_TEXT;
344 mCode = outputText.codePointAt(0);
347 mCode = CODE_OUTPUT_TEXT;
350 mCode = KeySpecParser.toUpperCaseOfCodeForLocale(code, needsToUpperCase, locale);
392 key.mCode,
[all...]

Completed in 166 milliseconds