HomeSort by relevance Sort by last modified time
    Searched refs:mCode (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
MojoException.java 12 private final int mCode;
18 mCode = code;
26 mCode = MojoResult.UNKNOWN;
34 return mCode;
42 return "MojoResult(" + mCode + "): " + MojoResult.describe(mCode);
MojoResult.java 39 public static String describe(int mCode) {
40 switch (mCode) {
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/
RcsException.java 41 private int mCode;
48 mCode = code;
53 mCode = code;
62 return mCode;
  /frameworks/base/telephony/java/com/android/ims/
ImsException.java 31 private int mCode;
38 mCode = code;
43 mCode = code;
52 return mCode;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyOutput.java 56 private final int mCode;
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 == ((Code)output).mCode
    [all...]
ActualKeyboardBuilder.java 107 return toString(spec.mLabel, spec.mIconId, spec.mOutputText, spec.mCode);
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonEvent.java 34 private final int mCode;
44 mCode = code;
59 return mCode;
85 return mCode >= 100 && mCode < 200;
92 return mCode >= 200 && mCode < 300;
99 return mCode >= 400 && mCode < 500;
106 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) {
  /system/netd/libnetdutils/include/netdutils/
Status.h 35 explicit Status(int code) : mCode(code) {}
37 Status(int code, const std::string& msg) : mCode(code), mMsg(msg) { assert(!ok()); }
39 int code() const { return mCode; }
49 int mCode = 0;
  /frameworks/base/telephony/java/android/telephony/ims/
ImsReasonInfo.java 430 public int mCode;
440 mCode = CODE_UNSPECIFIED;
446 mCode = in.readInt();
453 mCode = code;
459 mCode = code;
468 return mCode;
491 return "ImsReasonInfo :: {" + mCode + ", " + mExtraCode + ", " + mExtraMessage + "}";
501 out.writeInt(mCode);
  /frameworks/av/media/mtp/
MtpProperty.h 47 MtpPropertyCode mCode;
86 MtpPropertyCode getPropertyCode() const { return mCode; }
104 return ( ((mCode & 0xF000) == 0x5000)
105 || ((mCode & 0xF800) == 0xD000));
MtpProperty.cpp 34 : mCode(0),
56 : mCode(propCode),
133 if (!packet.getUInt16(mCode)) return false;
185 packet.putUInt16(mCode);
346 ALOGI(" %s (%04X)", MtpDebug::getDevicePropCodeName(mCode), mCode);
348 ALOGI(" %s (%04X)", MtpDebug::getObjectPropCodeName(mCode), mCode);
  /frameworks/base/media/java/android/mtp/
MtpPropertyList.java 41 private int mCode;
44 mCode = code;
69 return mCode;
  /frameworks/base/core/java/android/content/
UriMatcher.java 131 mCode = code;
139 mCode = NO_MATCH;
206 node.mCode = code;
225 return this.mCode;
268 return node.mCode;
275 private int mCode;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 61 private int mCode;
101 mCode = a.getInteger(R.styleable.KeyButtonView_keyCode, 0);
124 return mCode != 0 || super.isClickable();
128 mCode = code;
163 if (mCode != 0) {
182 if (action == ACTION_CLICK && mCode != 0) {
188 } else if (action == ACTION_LONG_CLICK && mCode != 0) {
218 if (mCode != 0) {
249 if (mCode != 0) {
269 if (mCode != 0)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpec.java 48 public final int mCode;
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...]
  /system/media/audio_utils/include/audio_utils/
ErrorLog.h 76 if (code == mEntries[mIdx].mCode
132 ss << prefix << std::setw(5) << entry.mCode
163 : mCode(0)
172 mCode = code;
178 T mCode; // error code
  /cts/tests/tests/net/src/android/net/wifi/rtt/cts/
TestBase.java 152 private int mCode; // 0: success, otherwise RangingResultCallback STATUS_CODE_*.
157 mCode = code;
164 mCode = 0; // not necessary since initialized to 0 - but for completeness
182 return mCode;
  /frameworks/base/services/core/java/com/android/server/security/
VerityUtils.java 139 private final int mCode;
156 this.mCode = code;
162 return mCode == RESULT_FAILED;
166 return mCode == RESULT_OK;
  /frameworks/native/libs/binder/include/binder/
TextOutput.h 89 uint32_t mCode;
175 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { }
177 inline uint32_t TypeCode::typeCode() const { return mCode; }
  /system/libhwbinder/include/hwbinder/
TextOutput.h 90 uint32_t mCode;
176 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { }
178 inline uint32_t TypeCode::typeCode() const { return mCode; }
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 56 private final int mCode;
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/Email/src/com/android/email/activity/setup/
OAuthAuthenticationActivity.java 141 private final String mCode;
146 mCode = code;
159 getContext(), mProviderId, mCode);
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
MainKeyboardAccessibilityDelegate.java 293 final int codePointOfNoPanelAutoMoreKey = key.getMoreKeys()[0].mCode;

Completed in 759 milliseconds

1 2 3 4 5 6 7 8 91011