Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Darc-rv-attr.m6 A *makeA(void); function
10 x = makeA();
24 x = y = makeA();
43 x = y = makeA();
66 x = y = makeA();
87 __unsafe_unretained id x = makeA();
101 __unsafe_unretained id y = x = makeA();
119 __strong id y = x = makeA();
139 __unsafe_unretained id y = x = makeA();
160 makeA();
[all …]
H A Darc-unsafeclaim.m22 A *makeA(void); function
26 x = makeA();
54 x = y = makeA();
81 x = y = makeA();
112 x = y = makeA();
141 __unsafe_unretained id x = makeA();
163 __unsafe_unretained id y = x = makeA();
189 __strong id y = x = makeA();
217 __unsafe_unretained id y = x = makeA();
246 makeA();
[all …]
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dexceptions.cpp207 A makeA(), *makeAPtr();
247 new(foo(),10.0) A(makeA()) : in b()
440 A makeA();
442 throw makeA(); in test()
H A Dcopy-constructor-elim-2.cpp63 static A makeA() { A a; a.value = 2; return a; } in makeA() function
70 A a(A::makeA(), 3); in test()
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Delaborated-type-specifier.cpp39 template <class T> struct A *makeA(T t);
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Duninitialized.cpp872 A makeA();
874 …A a1 = a1 = makeA(); // expected-warning{{variable 'a1' is uninitialized when used within its own…