Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:note

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}}
117 Uncopyable(const Uncopyable&); // expected-note {{declared private here}}
129 // Note: the way this test is written isn't really ideal, but there really
135 // Note that the warning in question can trigger in cases some people would
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}}