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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
H A DExpectedKeyOutput.java56 private final int mCode; field in class:ExpectedKeyOutput.Code
58 Code(final int code) { mCode = code; }
62 if (Constants.isLetterCode(mCode)) {
63 final String codeString = StringUtils.newSingleCodePointString(mCode);
74 return new CasePreservedCode(mCode);
79 return StringUtils.codePointCount(text) == 1 && text.codePointAt(0) == mCode;
84 return mCode == key.getCode();
89 return mCode == moreKeySpec.mCode;
94 return (output instanceof Code) && mCode
[all...]
/packages/apps/Email/src/com/android/email/activity/setup/
H A DOAuthAuthenticationActivity.java141 private final String mCode; field in class:OAuthAuthenticationActivity.OAuthTokenLoader
146 mCode = code;
159 getContext(), mProviderId, mCode);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMoreKeySpec.java48 public final int mCode; field in class:MoreKeySpec
68 mCode = Constants.CODE_OUTPUT_TEXT;
71 mCode = code;
82 return new Key(mLabel, mIconId, mCode, mOutputText, null /* hintLabel */, labelFlags,
90 hashCode = 31 + mCode;
106 return mCode == other.mCode
118 final String output = (mCode == Constants.CODE_OUTPUT_TEXT ? mOutputText
119 : Constants.printableCode(mCode));
120 if (StringUtils.codePointCount(label) == 1 && label.codePointAt(0) == mCode) {
[all...]
/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/keyboard/
H A DKey.java56 private final int mCode; field in class:Key
232 mCode = code;
377 mCode = mHintLabel.codePointAt(0);
379 mCode = mLabel.codePointAt(0);
385 mCode = CODE_OUTPUT_TEXT;
389 mCode = outputText.codePointAt(0);
392 mCode = CODE_OUTPUT_TEXT;
395 mCode = needsToUpcase ? StringUtils.toTitleCaseOfKeyCode(code, localeForUpcasing)
420 mCode = key.mCode;
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java1479 final int mCode; field in class:ConversationCursor.ConversationProvider.ProviderExecute
1485 mCode = code;
1504 switch(mCode) {

Completed in 117 milliseconds