Home | History | Annotate | Download | only in base

Lines Matching refs:Method

64 // An UnboundMethod is a wrapper for a method where the actual object is
66 template <class T, class Method, class Params>
69 UnboundMethod(Method m, const Params& p) : m_(m), p_(p) {
71 "bad unbound method params");
77 Method m_;
176 template <class Method, class... Params>
178 Method m,
180 internal::UnboundMethod<ObserverType, Method, Tuple<Params...>> method(
189 Method, Tuple<Params...>>,
190 this, context, method));
216 template <class Method, class Params>
219 const internal::UnboundMethod<ObserverType, Method, Params>& method) {
238 method.Run(obs);