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;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpec.java 27 public final int mCode;
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) {
  /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/sdk_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/opt/telephony/src/java/com/android/internal/telephony/cat/
ResultCode.java 164 private int mCode;
167 mCode = code;
175 return mCode;
180 if (r.mCode == value) {
  /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/latin/
ExpandableDictionary.java 53 char mCode;
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) {
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java 638 private int mCode = -1;
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) {
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
InstrumentationResultParser.java 120 private Integer mCode = null;
128 return mCode != null && mTestName != null && mTestClass != null;
402 testInfo.mCode = StatusCodes.ERROR;
404 testInfo.mCode = Integer.parseInt(value);
407 testInfo.mCode = StatusCodes.ERROR;
409 if (testInfo.mCode != StatusCodes.IN_PROGRESS) {
448 switch (testInfo.mCode) {
482 Log.e(LOG_TAG, "Unknown status code received: " + testInfo.mCode);
550 StatusCodes.START == mLastTestResult.mCode) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 61 public final int mCode;
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...]
  /prebuilts/misc/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 489 milliseconds