HomeSort by relevance Sort by last modified time
    Searched defs:ar (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/clang/test/Parser/
cxx0x-rvalue-reference.cpp 7 int & &&ar = a; // expected-error{{'ar' declared as a reference to a reference}} local
  /external/clang/test/SemaCXX/
alignof-sizeof-reference.cpp 4 char ar[sizeof(s0&)]; // expected-error {{invalid application of 'sizeof' to an incomplete type}} variable
6 char &r = ar[0];
cxx0x-initializer-aggregates.cpp 6 int ar[2]; member in struct:aggregate::S
cxx0x-initializer-scalars.cpp 21 int ar[10]; local
22 (void) ar[{1}]; // expected-error {{array subscript is not an integer}}
i-c-e-cxx.cpp 6 int ar[c]; variable
const-cast.cpp 32 const int ar[100] = {0}; local
33 int (&rar)[100] = const_cast<iarr>(ar);
35 int *pi = const_cast<int*>(ar);
55 const int *ar[100] = {0}; local
57 int *(*rar)[100] = const_cast<int *(*)[100]>(&ar); // expected-error {{const_cast from 'const int *(*)[100]' to 'int *(*)[100]' is not allowed}}
  /external/clang/test/CodeGenCXX/
volatile-1.cpp 5 volatile int ar[5]; variable
const-init.cpp 5 // CHECK: @ar = constant i32* @a
6 int &ar = a; variable
  /external/clang/test/CodeGen/
volatile-1.c 5 volatile int ar[5]; variable
  /external/srec/srec_jni/
android_speech_srec_MicrophoneInputStream.cpp 59 android::AudioRecord* ar = new android::AudioRecord( local
63 if (ar == NULL) {
67 status_t s = ar->initCheck();
69 delete ar;
70 ar = NULL;
74 return (int)ar;
  /frameworks/compile/libbcc/tests/data/src/
brackets.c 1 void testBrackets(int* ar, int len) {
5 ar[i] = i;
8 if (ar[i] != i) {
9 printf("error: [%d] %d != %d\n", i, ar[i], i);
38 int* ar = (int*) malloc(100); local
39 testBrackets(ar, 25);
40 free(ar);
46 int* ar = (int*) malloc(lenX * lenY * 4); local
50 ar2D[i] = ar + lenY * i;
53 free(ar);
    [all...]
  /system/media/wilhelm/src/
handler_bodies.c 99 CAudioRecorder* ar = (CAudioRecorder *) thiz; local
100 android_audioRecorder_useRecordEventMask(ar);
  /external/clang/test/CXX/special/class.copy/
implicit-move-def.cpp 23 F ar[2]; member in struct:H
50 A ar[2]; member in struct:D
  /external/dhcpcd/
arp.c 51 struct arphdr ar; local
56 ar.ar_hrd = htons(iface->family);
57 ar.ar_pro = htons(ETHERTYPE_IP);
58 ar.ar_hln = iface->hwlen;
59 ar.ar_pln = sizeof(sip);
60 ar.ar_op = htons(op);
61 memcpy(arp_buffer, &ar, sizeof(ar));
62 p = arp_buffer + sizeof(ar);
109 struct arphdr ar; local
    [all...]
  /external/zlib/contrib/masmx64/
inffas8664.c 83 /* ar offset register */
111 type_ar ar; local
127 ar.in = strm->next_in;
128 ar.last = ar.in + (strm->avail_in - PAD_AVAIL_IN);
129 ar.out = strm->next_out;
130 ar.beg = ar.out - (start - strm->avail_out);
131 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
    [all...]
  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkApp.java 118 AsyncResult ar = (AsyncResult) msg.obj; local
119 if (ar.exception != null) {
120 Log.d(TAG, "requestIsimAuthentication exception: " + ar.exception);
122 String response = (String) ar.result;
  /external/zlib/contrib/inflate86/
inffas86.c 78 /* ar offset register */
98 } ar; local
110 ar.in = strm->next_in;
111 ar.last = ar.in + (strm->avail_in - PAD_AVAIL_IN);
112 ar.out = strm->next_out;
113 ar.beg = ar.out - (start - strm->avail_out);
114 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT)
    [all...]
  /frameworks/base/cmds/app_process/
app_main.cpp 88 AndroidRuntime* ar = AndroidRuntime::getRuntime(); local
89 ar->callMain(mClassName, mClass, mArgC, mArgV);
  /packages/apps/Phone/src/com/android/phone/
CLIRListPreference.java 124 AsyncResult ar = (AsyncResult) msg.obj; local
132 if (ar.exception != null) {
133 if (DBG) Log.d(LOG_TAG, "handleGetCLIRResponse: ar.exception="+ar.exception);
134 tcpListener.onException(CLIRListPreference.this, (CommandException) ar.exception);
135 } else if (ar.userObj instanceof Throwable) {
138 int clirArray[] = (int[]) ar.result;
150 AsyncResult ar = (AsyncResult) msg.obj; local
152 if (ar.exception != null) {
153 if (DBG) Log.d(LOG_TAG, "handleSetCallWaitingResponse: ar.exception="+ar.exception)
    [all...]
CallWaitingCheckBoxPreference.java 80 AsyncResult ar = (AsyncResult) msg.obj; local
90 if (ar.exception != null) {
92 Log.d(LOG_TAG, "handleGetCallWaitingResponse: ar.exception=" + ar.exception);
96 (CommandException)ar.exception);
98 } else if (ar.userObj instanceof Throwable) {
102 int[] cwArray = (int[])ar.result;
116 AsyncResult ar = (AsyncResult) msg.obj; local
118 if (ar.exception != null) {
119 if (DBG) Log.d(LOG_TAG, "handleSetCallWaitingResponse: ar.exception=" + ar.exception)
    [all...]
CdmaSubscriptionListPreference.java 118 AsyncResult ar = (AsyncResult) msg.obj; local
120 if (ar.exception == null) {
122 int cdmaSubscriptionMode = Integer.valueOf((String) ar.userObj).intValue();
CdmaSystemSelectListPreference.java 116 AsyncResult ar = (AsyncResult) msg.obj; local
118 if (ar.exception == null) {
119 int statusCdmaRoamingMode = ((int[])ar.result)[0];
146 AsyncResult ar = (AsyncResult) msg.obj; local
148 if ((ar.exception == null) && (getValue() != null)) {
CdmaVoicePrivacyCheckBoxPreference.java 79 AsyncResult ar = (AsyncResult) msg.obj; local
81 if (ar.exception != null) {
82 if (DBG) Log.d(LOG_TAG, "handleGetVPResponse: ar.exception=" + ar.exception);
86 final int enable = ((int[]) ar.result)[0];
95 AsyncResult ar = (AsyncResult) msg.obj; local
97 if (ar.exception != null) {
98 if (DBG) Log.d(LOG_TAG, "handleSetVPResponse: ar.exception=" + ar.exception);
Use2GOnlyCheckBoxPreference.java 83 AsyncResult ar = (AsyncResult) msg.obj; local
85 if (ar.exception == null) {
86 int type = ((int[])ar.result)[0];
97 Log.i(LOG_TAG, "get preferred network type, exception="+ar.exception);
103 AsyncResult ar = (AsyncResult) msg.obj; local
105 if (ar.exception != null) {
109 Log.i(LOG_TAG, "set preferred network type, exception=" + ar.exception);
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/
ArchiveInstallerTest.java 105 ArchiveReplacement ar = new ArchiveReplacement(p.getArchives()[0], null /*replaced*/); local
107 assertFalse(mArchInst.install(ar, mSdkRoot, false /*forceHttp*/, mSdkMan, mMon));
115 ArchiveReplacement ar = new ArchiveReplacement(p.getArchives()[0], null /*replaced*/); local
121 assertTrue(mArchInst.install(ar, mSdkRoot, false /*forceHttp*/, mSdkMan, mMon));
159 ArchiveReplacement ar = new ArchiveReplacement( local
167 assertTrue(mArchInst.install(ar, mSdkRoot, false /*forceHttp*/, mSdkMan, mMon));
232 ArchiveReplacement ar = new ArchiveReplacement( local
240 assertTrue(mArchInst.install(ar, mSdkRoot, false /*forceHttp*/, mSdkMan, mMon));

Completed in 697 milliseconds

1 2 3 4