Home
last modified time | relevance | path

Searched refs:ap2 (Results 1 – 25 of 35) sorted by relevance

12

/external/clang/test/SemaCXX/
Daddress-space-conversion.cpp26 A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, in test_const_cast() argument
39 (void)const_cast<A_ptr>(ap2); // expected-error{{is not allowed}} in test_const_cast()
41 (void)const_cast<A_ptr_1>(ap2); // expected-error{{is not allowed}} in test_const_cast()
51 A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, in test_static_cast() argument
61 (void)static_cast<B_ptr_2>(ap2); in test_static_cast()
66 (void)static_cast<void_ptr_2>(ap2); in test_static_cast()
81 (void)static_cast<B_ptr>(ap2); // expected-error{{casts away qualifiers}} in test_static_cast()
83 (void)static_cast<B_ptr_1>(ap2); // expected-error{{casts away qualifiers}} in test_static_cast()
89 (void)static_cast<void_ptr>(ap2); // expected-error{{is not allowed}} in test_static_cast()
91 (void)static_cast<void_ptr_1>(ap2); // expected-error{{is not allowed}} in test_static_cast()
[all …]
/external/clang/test/CodeGen/
Dms_abi.c66 __builtin_ms_va_list ap2; in f4() local
67 __builtin_ms_va_copy(ap2, ap); in f4()
99 __builtin_va_list ap2; in f5() local
100 __builtin_va_copy(ap2, ap); in f5()
139 __builtin_ms_va_list ap2; in f6() local
140 __builtin_ms_va_copy(ap2, ap); in f6()
/external/llvm/test/Bitcode/
DvariableArgumentIntrinsic.3.2.ll11 %ap2 = bitcast i8** %ap to i8*
13 ; CHECK: call void @llvm.va_start(i8* %ap2)
14 call void @llvm.va_start(i8* %ap2)
22 ; CHECK: call void @llvm.va_copy(i8* %aq2, i8* %ap2)
23 call void @llvm.va_copy(i8* %aq2, i8* %ap2)
27 ; CHECK-NEXT: call void @llvm.va_end(i8* %ap2)
28 call void @llvm.va_end(i8* %ap2)
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/
Dassignment.fail.cpp28 std::auto_ptr<A> ap2(p2); in test() local
31 assert(ap2.get() == p2); in test()
32 std::auto_ptr<A>& apr = ap2 = ap1; in test()
33 assert(&apr == &ap2); in test()
36 assert(ap2.get() == p1); in test()
Dassignment.pass.cpp28 std::auto_ptr<A> ap2(p2); in test() local
31 assert(ap2.get() == p2); in test()
32 std::auto_ptr<A>& apr = ap2 = ap1; in test()
33 assert(&apr == &ap2); in test()
36 assert(ap2.get() == p1); in test()
Dconvert_assignment.pass.cpp28 std::auto_ptr<A> ap2(p2); in test() local
32 assert(ap2.get() == p2); in test()
33 std::auto_ptr<A>& apr = ap2 = ap1; in test()
34 assert(&apr == &ap2); in test()
38 assert(ap2.get() == p1); in test()
Dconvert_assignment.fail.cpp28 std::auto_ptr<A> ap2(p2); in test() local
32 assert(ap2.get() == p2); in test()
33 std::auto_ptr<A>& apr = ap2 = ap1; in test()
34 assert(&apr == &ap2); in test()
38 assert(ap2.get() == p1); in test()
Dcopy.pass.cpp27 std::auto_ptr<A> ap2(ap1); in test() local
29 assert(ap2.get() == p); in test()
Dcopy.fail.cpp27 std::auto_ptr<A> ap2(ap1); in test() local
29 assert(ap2.get() == p); in test()
Dconvert.fail.cpp27 std::auto_ptr<A> ap2(ap1); in test() local
29 assert(ap2.get() == p); in test()
Dconvert.pass.cpp27 std::auto_ptr<A> ap2(ap1); in test() local
29 assert(ap2.get() == p); in test()
/external/v8/test/mjsunit/
Dsetters-on-elements.js121 var ap2 = [];
122 a.__proto__ = ap2;
130 ap2.__proto__ = ap; // "sneak" in a callback.
145 ap2 = [];
146 a.__proto__ = ap2;
154 ap2.__proto__ = ap;
165 a.__proto__ = ap2;
175 ap2.__defineSetter__(index+1, function() { calls++; });
Dgetters-on-elements.js110 var ap2 = [];
111 a.__proto__ = ap2;
119 ap2.__proto__ = ap; // "sneak" in a callback.
134 ap2 = [];
135 a.__proto__ = ap2;
143 ap2.__proto__ = ap;
154 a.__proto__ = ap2;
164 ap2.__defineGetter__(3, function() { calls++; return 0; });
/external/llvm/test/CodeGen/Mips/
Do32_cc_vararg.ll25 %ap2 = bitcast i8** %ap to i8*
26 call void @llvm.va_end(i8* %ap2)
51 %ap2 = bitcast i8** %ap to i8*
52 call void @llvm.va_end(i8* %ap2)
79 %ap2 = bitcast i8** %ap to i8*
80 call void @llvm.va_end(i8* %ap2)
102 %ap2 = bitcast i8** %ap to i8*
103 call void @llvm.va_end(i8* %ap2)
130 %ap2 = bitcast i8** %ap to i8*
131 call void @llvm.va_end(i8* %ap2)
[all …]
/external/llvm/test/Analysis/CFLAliasAnalysis/
Dva.ll9 %ap2 = bitcast i8** %ap to i8*
10 call void @llvm.va_start(i8* %ap2)
18 call void @llvm.va_copy(i8* %aq2, i8* %ap2)
22 call void @llvm.va_end(i8* %ap2)
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
Dconvert_to_auto_ptr_ref.pass.cpp27 std::auto_ptr<A> ap2(apr); in test() local
29 assert(ap2.get() == p1); in test()
30 ap2.release(); in test()
Dassign_from_auto_ptr_ref.pass.cpp28 std::auto_ptr<A> ap2(new A(2)); in test() local
29 ap2 = apr; in test()
31 assert(ap2.get() == p1); in test()
Dconvert_from_auto_ptr_ref.pass.cpp28 std::auto_ptr<A> ap2(apr); in test() local
29 assert(ap2.get() == p1); in test()
Dconvert_to_auto_ptr.pass.cpp30 std::auto_ptr<A> ap2(source()); in test() local
/external/avahi/avahi-common/
Davahi-malloc.c212 va_list ap2; in avahi_strdup_vprintf() local
214 va_copy (ap2, ap); in avahi_strdup_vprintf()
215 n = vsnprintf(buf, len, fmt, ap2); in avahi_strdup_vprintf()
216 va_end (ap2); in avahi_strdup_vprintf()
/external/dbus/dbus/
Ddbus-sysdeps.h456 # define DBUS_VA_COPY(ap1, ap2) (*(ap1) = *(ap2)) argument
458 # define DBUS_VA_COPY(ap1, ap2) memcpy ((ap1), (ap2), sizeof (va_list)) argument
460 # define DBUS_VA_COPY(ap1, ap2) ((ap1) = (ap2)) argument
/external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
Dallocate.pass.cpp45 A* ap2 = a.allocate(3, (const void*)5); in main() local
49 a.deallocate(ap2, 3); in main()
/external/boringssl/src/crypto/obj/
Dobj_xref.pl58 my$ap2 = $oid_tbl{$xref_tbl{$a}[1]};
61 return $ap2 - $bp2;
/external/llvm/test/CodeGen/Mips/cconv/
Darguments-varargs.ll117 %ap2 = bitcast i8** %ap to i8*
118 call void @llvm.va_start(i8* %ap2)
130 call void @llvm.va_end(i8* %ap2)
235 %ap2 = bitcast i8** %ap to i8*
236 call void @llvm.va_start(i8* %ap2)
248 call void @llvm.va_end(i8* %ap2)
362 %ap2 = bitcast i8** %ap to i8*
363 call void @llvm.va_start(i8* %ap2)
375 call void @llvm.va_end(i8* %ap2)
480 %ap2 = bitcast i8** %ap to i8*
[all …]
Darguments-hard-float-varargs.ll32 %ap2 = bitcast i8** %ap to i8*
33 call void @llvm.va_start(i8* %ap2)
37 call void @llvm.va_end(i8* %ap2)
97 %ap2 = bitcast i8** %ap to i8*
98 call void @llvm.va_start(i8* %ap2)
102 call void @llvm.va_end(i8* %ap2)

12