Lines Matching full:used
15 foo(); // expected-note {{used here}} in test()
16 bar<int>(); // expected-note {{used here}} in test()
27 foo(); // expected-note {{used here}} in test()
28 var = 0; // expected-note {{used here}} in test()
29 bar<int>(); // expected-note {{used here}} in test()
65 a.foo(); // expected-note {{used here}} in test()
67 a.baz(); // expected-note {{used here}} in test()
71 Test() {} // expected-note 2 {{used here}} in Test()
88 B<A>::var = 0; // expected-note {{used here}} in test()
89 B<A>::foo(); // expected-note {{used here}} in test()
116 // warn about this copy constructor being used without a definition.
140 // isn't any other way to check that the odr-used logic for constants
142 // (The more accurate used-but-not-defined warning is the only other visible
143 // effect of accurate odr-used computation.)
176 …with side effects will be evaluated despite being used as an operand to 'typeid'}} xpected-note {{… in tests()
179 a(A::unused, 1 ? A::used2 : A::used2); // xpected-note {{used here}} in tests()
191 template<void x(int)> void t(long*) { x(10); } // expected-note {{used here}} in t()
208 bar(); // expected-note {{used here}} in foo()
217 …virtual void used() = 0; // expected-warning {{function 'test9::(anonymous namespace)::X::used' ha…
222 x.X::used(); // expected-note {{used here}} in test()
230 …virtual void used() = 0; // expected-warning {{function 'test10::(anonymous namespace)::X::used' h…
236 X::used(); // expected-note {{used here}} in test()
275 b1(); // expected-note {{used here}} in test2()
276 !b1; // expected-note {{used here}} in test2()
277 b1 + b2; // expected-note {{used here}} in test2()
278 b1[0]; // expected-note {{used here}} in test2()
279 (void)b1->member; // expected-note {{used here}} in test2()
308 c.g(7); // expected-note {{used here}} in test()
312 (void)static_cast<T4>(c); // expected-note {{used here}} in test()
313 T5 t5 = c; // expected-note {{used here}} in test()
314 T6 &t6 = c; // expected-note {{used here}} in test()
316 Cls2 obj1((T7())); // expected-note {{used here}} in test()