Searched refs:mCode (Results 1 - 7 of 7) 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 = Constants.CODE_OUTPUT_TEXT;
44 mCode = code;
54 hashCode = 31 + mCode;
66 return mCode == other.mCode
78 final String output = (mCode == Constants.CODE_OUTPUT_TEXT ? mOutputText
79 : Constants.printableCode(mCode));
80 if (StringUtils.codePointCount(label) == 1 && label.codePointAt(0) == mCode) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKey.java61 private final int mCode; field in class:Key
192 this(params, moreKeySpec.mLabel, null, moreKeySpec.mIconId, moreKeySpec.mCode,
214 mCode = code;
350 mCode = mHintLabel.codePointAt(0);
352 mCode = mLabel.codePointAt(0);
358 mCode = CODE_OUTPUT_TEXT;
362 mCode = outputText.codePointAt(0);
365 mCode = CODE_OUTPUT_TEXT;
368 mCode = KeySpecParser.toUpperCaseOfCodeForLocale(code, needsToUpperCase, locale);
391 mCode
[all...]
H A DMainKeyboardView.java942 final int moreKeyCode = key.getMoreKeys()[0].mCode;
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventFragment.java782 private int mCode = -1; field in class:EditEventFragment.Done
786 mCode = code;
800 if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null
822 } else if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null && isEmptyNewEvent()) {
826 if ((mCode & Utils.DONE_DELETE) != 0 && mOriginalModel != null
847 if ((mCode & Utils.DONE_EXIT) != 0) {
850 if ((mCode & Utils.DONE_SAVE) != 0) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableDictionary.java48 char mCode; field in class:ExpandableDictionary.Node
197 if (node.mCode == c) {
205 childNode.mCode = c;
425 final char c = node.mCode;
568 if (node.mCode == c) {
575 childNode.mCode = c;
620 mLookedUpString[index] = node.mCode;
654 if (node.mCode == currentChar) {
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java1469 final int mCode; field in class:ConversationCursor.ConversationProvider.ProviderExecute
1475 mCode = code;
1494 switch(mCode) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DKeySpecParserTests.java86 Constants.printableCode(spec.mCode));

Completed in 177 milliseconds