Home
last modified time | relevance | path

Searched refs:aip (Results 1 – 6 of 6) sorted by relevance

/external/clang/test/SemaObjCXX/
Darc-overloading.mm10 id __autoreleasing *aip;
15 int &ir3 = f0(aip);
28 id __autoreleasing *aip;
34 int &ir3 = f1(aip);
46 id __autoreleasing *aip;
52 float &fr1 = f2(aip);
63 id __autoreleasing aip;
68 int &ir3 = f3(&aip);
79 id __autoreleasing aip;
84 int &ir2 = f4(&aip);
[all …]
Darc-type-conversion.mm100 __autoreleasing id *aip) {
119 (void)const_autoreleasing_id_pointer(aip);
124 __autoreleasing id *aip,
129 …uip = aip; // expected-error{{assigning to '__unsafe_unretained id *' from incompatible type '__au…
133 cuip = aip;
137 __autoreleasing id *aip,
141 void *vp3 = aip;
145 (void)(void*)aip;
149 (void)static_cast<void*>(aip);
153 (void)reinterpret_cast<void*>(aip);
[all …]
Darc-templates.mm125 __autoreleasing id *aip;
145 __autoreleasing A * *aip;
230 __autoreleasing id *aip;
235 float &fr1 = qual_vs_unqual_ptr(aip);
240 float &fr3 = qual_vs_unqual_ref(*aip);
/external/clang/test/SemaObjC/
Darc-non-pod-memaccess.m16 void test(id __strong *sip, id __weak *wip, id __autoreleasing *aip,
21 memset(aip, 0, 17);
28 …memcpy(aip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to owne…
36 …memcpy(ptr, aip, 17); // expected-warning{{source of this 'memcpy' call is a pointer to ownership-…
44 …memmove(aip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ow…
52 …memmove(ptr, aip, 17); // expected-warning{{source of this 'memmove' call is a pointer to ownershi…
Darc-type-conversion.m31 __autoreleasing id *aip,
35 void *vp3 = aip;
39 (void)(void*)aip;
43 (void)(void*)&aip;
50 __autoreleasing id *aip = (__autoreleasing id *)vp;
60aip = vp; // expected-error{{implicit conversion of a non-Objective-C pointer type 'void *' to '__…
73 __autoreleasing id *aip = (id*)(__autoreleasing id *)vp;
/external/icu/icu4c/source/test/intltest/
Dalphaindextst.cpp134 AlphabeticIndex &aip = index->addLabels(Locale::getJapanese(), status); in APITest() local
135 TEST_ASSERT(&aip == index); in APITest()