HomeSort by relevance Sort by last modified time
    Searched defs:mCode (Results 1 - 14 of 14) sorted by null

  /system/security/keystore/
keystore_client.h 38 ResponseCode mCode;
  /frameworks/av/media/mtp/
MtpProperty.h 45 MtpPropertyCode mCode;
84 inline MtpPropertyCode getPropertyCode() const { return mCode; }
100 return ( ((mCode & 0xF000) == 0x5000)
101 || ((mCode & 0xF800) == 0xD000));
  /frameworks/native/include/utils/
TextOutput.h 89 uint32_t mCode;
161 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { }
163 inline uint32_t TypeCode::typeCode() const { return mCode; }
  /sdk/ide_common/src/com/android/ide/common/resources/configuration/
CountryCodeQualifier.java 31 private final int mCode;
79 mCode = code;
83 return mCode;
103 return mCode != DEFAULT_CODE;
125 return mCode == ((CountryCodeQualifier)qualifier).mCode;
133 return mCode;
141 return getFolderSegment(mCode);
146 if (mCode != DEFAULT_CODE) {
147 return String.format("MCC %1$d", mCode);
    [all...]
NetworkCodeQualifier.java 31 private final int mCode;
79 mCode = code;
83 return mCode;
103 return mCode != DEFAULT_CODE;
136 return mCode == ((NetworkCodeQualifier)qualifier).mCode;
144 return mCode;
152 return getFolderSegment(mCode);
157 if (mCode != DEFAULT_CODE) {
158 return String.format("MNC %1$d", mCode);
    [all...]
  /frameworks/base/services/java/com/android/server/
NativeDaemonEvent.java 33 private final int mCode;
40 mCode = code;
51 return mCode;
73 return mCode >= 100 && mCode < 200;
80 return mCode >= 200 && mCode < 300;
87 return mCode >= 400 && mCode < 500;
94 return mCode >= 500 && mCode < 600
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
ResultCode.java 164 private int mCode;
167 mCode = code;
175 return mCode;
180 if (r.mCode == value) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java 53 char mCode;
215 if (node.mCode == c) {
223 childNode.mCode = c;
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) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 52 int mCode;
65 if (mCode != 0) {
86 mCode = a.getInteger(R.styleable.KeyButtonView_keyCode, 0);
219 if (mCode != 0) {
240 if (mCode != 0) {
250 if (mCode != 0) {
279 final KeyEvent ev = new KeyEvent(mDownTime, when, action, mCode, repeatCount,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeySpecParser.java 64 public final int mCode;
71 mCode = toUpperCaseOfCodeForLocale(getCode(moreKeySpec, codesSet),
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java 641 private int mCode = -1;
644 mCode = code;
657 if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null
679 } else if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null && isEmptyNewEvent()) {
683 if ((mCode & Utils.DONE_DELETE) != 0 && mOriginalModel != null
704 if ((mCode & Utils.DONE_EXIT) != 0) {
707 if ((mCode & Utils.DONE_SAVE) != 0) {
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 56 public final int mCode;
158 this(params, moreKeySpec.mLabel, null, moreKeySpec.mIconId, moreKeySpec.mCode,
180 mCode = code;
314 mCode = mHintLabel.codePointAt(0);
316 mCode = mLabel.codePointAt(0);
322 mCode = CODE_OUTPUT_TEXT;
326 mCode = outputText.codePointAt(0);
329 mCode = CODE_OUTPUT_TEXT;
332 mCode = KeySpecParser.toUpperCaseOfCodeForLocale(code, needsToUpperCase, locale);
367 key.mCode,
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
InstrumentationResultParser.java 119 private Integer mCode = null;
127 return mCode != null && mTestName != null && mTestClass != null;
403 testInfo.mCode = StatusCodes.ERROR;
405 testInfo.mCode = Integer.parseInt(value);
408 testInfo.mCode = StatusCodes.ERROR;
410 if (testInfo.mCode != StatusCodes.IN_PROGRESS) {
449 switch (testInfo.mCode) {
483 Log.e(LOG_TAG, "Unknown status code received: " + testInfo.mCode);
551 StatusCodes.START == mLastTestResult.mCode) {
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 246 milliseconds