Lines Matching refs:bind
194 template <class F> void bind(F f); // expected-note 12 {{candidate template ignored}}
210 bind(&nonstat); // expected-error {{no matching function for call}} in test()
211 bind(&A::nonstat); // expected-error {{no matching function for call}} in test()
213 bind(&mixed); // expected-error {{no matching function for call}} in test()
214 bind(&A::mixed); // expected-error {{no matching function for call}} in test()
216 bind(&stat); // expected-error {{no matching function for call}} in test()
217 bind(&A::stat); // expected-error {{no matching function for call}} in test()
261 bind(&nonstat); in test0a()
262 bind(&B::nonstat); in test0a()
264 bind(&mixed); in test0a()
265 bind(&B::mixed); in test0a()
267 bind(&stat); in test0a()
268 bind(&B::stat); in test0a()
272 bind(&nonstat); // expected-error {{no matching function for call}} in test0b()
273 bind(&B::nonstat); // expected-error {{no matching function for call}} in test0b()
275 bind(&mixed); // expected-error {{no matching function for call}} in test0b()
276 bind(&B::mixed); // expected-error {{no matching function for call}} in test0b()
278 bind(&stat); // expected-error {{no matching function for call}} in test0b()
279 bind(&B::stat); // expected-error {{no matching function for call}} in test0b()