Lines Matching refs:bind
183 template <class F> void bind(F f); // expected-note 12 {{candidate template ignored}}
199 bind(&nonstat); // expected-error {{no matching function for call}} in test()
200 bind(&A::nonstat); // expected-error {{no matching function for call}} in test()
202 bind(&mixed); // expected-error {{no matching function for call}} in test()
203 bind(&A::mixed); // expected-error {{no matching function for call}} in test()
205 bind(&stat); // expected-error {{no matching function for call}} in test()
206 bind(&A::stat); // expected-error {{no matching function for call}} in test()
250 bind(&nonstat); in test0a()
251 bind(&B::nonstat); in test0a()
253 bind(&mixed); in test0a()
254 bind(&B::mixed); in test0a()
256 bind(&stat); in test0a()
257 bind(&B::stat); in test0a()
261 bind(&nonstat); // expected-error {{no matching function for call}} in test0b()
262 bind(&B::nonstat); // expected-error {{no matching function for call}} in test0b()
264 bind(&mixed); // expected-error {{no matching function for call}} in test0b()
265 bind(&B::mixed); // expected-error {{no matching function for call}} in test0b()
267 bind(&stat); // expected-error {{no matching function for call}} in test0b()
268 bind(&B::stat); // expected-error {{no matching function for call}} in test0b()