Lines Matching refs:A
6 struct A { struct
9 void foo(A);
23 struct A { struct
24 A();
27 void foo(A);
46 struct A { struct
47 A();
48 A(A &&o);
51 void foo(A);
66 struct A { struct
67 A();
68 A(const A &o) = delete;
69 A(A &&o) = delete;
72 void foo(A);
87 struct A { struct
88 A();
89 A &operator=(A &&o);
92 void foo(A);
107 struct A { struct
108 A();
109 A(A &&o) = delete;
112 void foo(A);
127 struct A { struct
128 A();
129 A(const A &o) = default;
130 A(A &&o) = delete;
133 void foo(A);
147 struct A { struct
148 A();
149 A(const A &o) = delete;
150 A(A &&o) = default;
153 void foo(A);
167 struct A { struct
168 A();
169 A(const A &o) = default;
172 void foo(A);
186 struct A { struct
187 A();
188 A(const A &) = default;
189 A(const A &, int = 0);
192 struct B : A {};