HomeSort by relevance Sort by last modified time
    Searched full:mcode (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/clang/test/Driver/
code-model.c 7 // CHECK-SMALL: "-mcode-model" "small"
8 // CHECK-KERNEL: "-mcode-model" "kernel"
9 // CHECK-MEDIUM: "-mcode-model" "medium"
10 // CHECK-LARGE: "-mcode-model" "large"
12 // CHECK-INVALID: error: invalid value 'lager' in '-mcode-model lager'
  /toolchain/binutils/binutils-2.25/config/
mt-sde 3 # linked against partly-MIPS16 code. The -mcode-readable=pcrel option allows
9 CFLAGS_FOR_TARGET += -Os -minterlink-mips16 -mcode-readable=pcrel -mno-gpopt
10 CXXFLAGS_FOR_TARGET += -Os -minterlink-mips16 -mcode-readable=pcrel -mno-gpopt
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsException.java 29 private int mCode;
36 mCode = code;
41 mCode = code;
50 return mCode;
ImsUt.java 547 AsyncResult.forMessage(result, null, new ImsException(errorString, error.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);
  /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/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/av/media/mtp/
MtpProperty.h 45 MtpPropertyCode mCode;
84 MtpPropertyCode getPropertyCode() const { return mCode; }
103 return ( ((mCode & 0xF000) == 0x5000)
104 || ((mCode & 0xF800) == 0xD000));
MtpProperty.cpp 30 : mCode(0),
52 : mCode(propCode),
129 if (!packet.getUInt16(mCode)) return false;
181 packet.putUInt16(mCode);
342 ALOGI(" %s (%04X)", MtpDebug::getDevicePropCodeName(mCode), mCode);
344 ALOGI(" %s (%04X)", MtpDebug::getObjectPropCodeName(mCode), mCode);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 56 private int mCode;
90 mCode = a.getInteger(R.styleable.KeyButtonView_keyCode, 0);
109 mCode = code;
138 if (mCode != 0) {
157 if (action == ACTION_CLICK && mCode != 0) {
163 } else if (action == ACTION_LONG_CLICK && mCode != 0) {
187 if (mCode != 0) {
206 if (mCode != 0) {
214 if (mCode != 0) {
245 final KeyEvent ev = new KeyEvent(mDownTime, when, action, mCode, repeatCount
    [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) {
  /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...]
  /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/telephony/java/com/android/ims/
ImsReasonInfo.java 319 public int mCode;
325 mCode = CODE_UNSPECIFIED;
335 mCode = code;
341 mCode = code;
350 return mCode;
373 return "ImsReasonInfo :: {" + mCode + ", " + mExtraCode + ", " + mExtraMessage + "}";
383 out.writeInt(mCode);
389 mCode = in.readInt();
  /external/curl/lib/
easy.c 575 CURLMcode mcode; local
613 mcode = curl_multi_socket_action(multi, CURL_SOCKET_TIMEOUT, 0,
624 mcode = curl_multi_socket_action(multi, fds[i].fd, act,
639 if(mcode)
676 CURLMcode mcode = CURLM_OK; local
682 while(!done && !mcode) {
687 mcode = curl_multi_wait(multi, NULL, 0, 1000, &ret);
689 if(mcode == CURLM_OK) {
715 mcode = curl_multi_perform(multi, &still_running);
719 if((mcode == CURLM_OK) && !still_running)
761 CURLMcode mcode; local
    [all...]
  /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);
  /frameworks/native/include/binder/
TextOutput.h 94 uint32_t mCode;
166 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { }
168 inline uint32_t TypeCode::typeCode() const { return mCode; }
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TelephonyEventLog.java 502 b.putInt(DATA_KEY_REASONINFO_CODE, reasonInfo.mCode);
617 b.putInt(DATA_KEY_REASONINFO_CODE, reasonInfo.mCode);
  /external/llvm/docs/
Extensions.rst 210 larger binaries, LLVM supports the use of ``-mcode-model=large`` to allow a 4GiB
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
MainKeyboardAccessibilityDelegate.java 293 final int codePointOfNoPanelAutoMoreKey = key.getMoreKeys()[0].mCode;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
MoreKeySpecTests.java 45 Constants.printableCode(spec.mCode));
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationCursor.java     [all...]

Completed in 1351 milliseconds

1 2 3