Home | History | Annotate | Download | only in SemaCXX

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}}
200 bind(&A::nonstat); // expected-error {{no matching function for call}}
202 bind(&mixed); // expected-error {{no matching function for call}}
203 bind(&A::mixed); // expected-error {{no matching function for call}}
205 bind(&stat); // expected-error {{no matching function for call}}
206 bind(&A::stat); // expected-error {{no matching function for call}}
250 bind(&nonstat);
251 bind(&B::nonstat);
253 bind(&mixed);
254 bind(&B::mixed);
256 bind(&stat);
257 bind(&B::stat);
261 bind(&nonstat); // expected-error {{no matching function for call}}
262 bind(&B::nonstat); // expected-error {{no matching function for call}}
264 bind(&mixed); // expected-error {{no matching function for call}}
265 bind(&B::mixed); // expected-error {{no matching function for call}}
267 bind(&stat); // expected-error {{no matching function for call}}
268 bind(&B::stat); // expected-error {{no matching function for call}}
281 { return u->*f_; } // expected-error{{reference to non-static member function must be called; did you mean to call it with no arguments?}} expected-error {{non-const lvalue reference to type 'int' cannot bind to a temporary of type 'int'}}