Home | History | Annotate | Download | only in base

Lines Matching refs:Method

141   template <class Method>
142 void Notify(Method m) {
143 UnboundMethod<ObserverType, Method, Tuple0> method(m, MakeTuple());
144 Notify<Method, Tuple0>(method);
147 template <class Method, class A>
148 void Notify(Method m, const A &a) {
149 UnboundMethod<ObserverType, Method, Tuple1<A> > method(m, MakeTuple(a));
150 Notify<Method, Tuple1<A> >(method);
166 template <class Method, class Params>
167 void Notify(const UnboundMethod<ObserverType, Method, Params>& method) {
177 template NotifyWrapper<Method, Params>, list, method));
184 template <class Method, class Params>
186 const UnboundMethod<ObserverType, Method, Params>& method) {
206 method.Run(obs);