Home
last modified time | relevance | path

Searched refs:A_ptr (Results 1 – 2 of 2) sorted by relevance

/external/clang/test/SemaCXX/
Daddress-space-conversion.cpp17 typedef A *A_ptr; typedef
26 A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, in test_const_cast()
38 (void)const_cast<A_ptr>(ap1); // expected-error{{is not allowed}} in test_const_cast()
39 (void)const_cast<A_ptr>(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()
54 (void)static_cast<A_ptr>(bp); in test_static_cast()
67 (void)static_cast<A_ptr>(vp); in test_static_cast()
72 (void)static_cast<A_ptr>(bp1); // expected-error{{is not allowed}} in test_static_cast()
73 (void)static_cast<A_ptr>(bp2); // expected-error{{is not allowed}} in test_static_cast()
94 (void)static_cast<A_ptr>(vp1); // expected-error{{casts away qualifiers}} in test_static_cast()
[all …]
/external/clang/test/SemaObjCXX/Inputs/
Dnullability-pragmas-1.h18 typedef A *A_ptr; typedef
27 void f6(A_ptr obj);
54 - (A *)method1:(A_ptr)ptr;
94 void f22(A_ptr y); // expected-warning{{pointer is missing a nullability type specifier}}
96 void f24(A_ptr _Nullable y);