Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:used

11     foo(); // expected-note {{used here}}
12 bar<int>(); // expected-note {{used here}}
23 foo(); // expected-note {{used here}}
24 var = 0; // expected-note {{used here}}
25 bar<int>(); // expected-note {{used here}}
61 a.foo(); // expected-note {{used here}}
63 a.baz(); // expected-note {{used here}}
67 Test() {} // expected-note 2 {{used here}}
83 B<A>::var = 0; // expected-note {{used here}}
84 B<A>::foo(); // expected-note {{used here}}
111 // warn about this copy constructor being used without a definition.
130 // isn't any other way to check that the odr-used logic for constants
132 // (The more accurate used-but-not-defined warning is the only other visible
133 // effect of accurate odr-used computation.)
166 (void)typeid(p(A::used1)); // xpected-note {{used here}}
169 a(A::unused, 1 ? A::used2 : A::used2); // xpected-note {{used here}}
181 template<void x(int)> void t(long*) { x(10); } // expected-note {{used here}}
198 bar(); // expected-note {{used here}}
207 virtual void used() = 0; // expected-warning {{function 'test9::<anonymous namespace>::X::used' has internal linkage but is not defined}}
212 x.X::used(); // expected-note {{used here}}
220 virtual void used() = 0; // expected-warning {{function 'test10::<anonymous namespace>::X::used' has internal linkage but is not defined}}
226 X::used(); // expected-note {{used here}}
265 b1(); // expected-note {{used here}}
266 !b1; // expected-note {{used here}}
267 b1 + b2; // expected-note {{used here}}
268 b1[0]; // expected-note {{used here}}
269 (void)b1->member; // expected-note {{used here}}
298 c.g(7); // expected-note {{used here}}
302 (void)static_cast<T4>(c); // expected-note {{used here}}
303 T5 t5 = c; // expected-note {{used here}}
304 T6 &t6 = c; // expected-note {{used here}}
306 Cls2 obj1((T7())); // expected-note {{used here}}