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

/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsException.java29 private int mCode; field in class:ImsException
36 mCode = code;
41 mCode = code;
50 return mCode;
/frameworks/base/core/java/android/content/
H A DUriMatcher.java131 mCode = code;
139 mCode = NO_MATCH;
206 node.mCode = code;
225 return this.mCode;
268 return node.mCode;
275 private int mCode; field in class:UriMatcher
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java53 private int mCode; field in class:KeyButtonView
87 mCode = a.getInteger(R.styleable.KeyButtonView_keyCode, 0);
106 mCode = code;
135 if (mCode != 0) {
154 if (action == ACTION_CLICK && mCode != 0) {
160 } else if (action == ACTION_LONG_CLICK && mCode != 0) {
184 if (mCode != 0) {
203 if (mCode != 0) {
211 if (mCode != 0) {
242 final KeyEvent ev = new KeyEvent(mDownTime, when, action, mCode, repeatCoun
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonEvent.java34 private final int mCode; field in class:NativeDaemonEvent
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 >
[all...]
/frameworks/av/media/mtp/
H A DMtpProperty.h45 MtpPropertyCode mCode; member in class:android::MtpProperty
84 MtpPropertyCode getPropertyCode() const { return mCode; }
103 return ( ((mCode & 0xF000) == 0x5000)
104 || ((mCode & 0xF800) == 0xD000));
/frameworks/native/include/binder/
H A DTextOutput.h94 uint32_t mCode; member in class:android::TypeCode
166 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { }
168 inline uint32_t TypeCode::typeCode() const { return mCode; }
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DResultCode.java164 private int mCode; field in class:ResultCode
167 mCode = code;
175 return mCode;
180 if (r.mCode == value) {
/frameworks/base/telephony/java/com/android/ims/
H A DImsReasonInfo.java295 public int mCode; field in class:ImsReasonInfo
301 mCode = CODE_UNSPECIFIED;
311 mCode = code;
317 mCode = code;
326 return mCode;
349 return "ImsReasonInfo :: {" + mCode + ", " + mExtraCode + ", " + mExtraMessage + "}";
359 out.writeInt(mCode);
365 mCode = in.readInt();

Completed in 1406 milliseconds