• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/

Lines Matching refs:P1

162 template <class F, class P1>
166 static wxScopeGuardImpl1<F, P1> MakeGuard(F fun, P1 p1)
168 return wxScopeGuardImpl1<F, P1>(fun, p1);
176 wxScopeGuardImpl1(F fun, P1 p1) : m_fun(fun), m_p1(p1) { }
179 const P1 m_p1;
184 template <class F, class P1>
185 inline wxScopeGuardImpl1<F, P1> wxMakeGuard(F fun, P1 p1)
187 return wxScopeGuardImpl1<F, P1>::MakeGuard(fun, p1);
194 template <class F, class P1, class P2>
198 static wxScopeGuardImpl2<F, P1, P2> MakeGuard(F fun, P1 p1, P2 p2)
200 return wxScopeGuardImpl2<F, P1, P2>(fun, p1, p2);
208 wxScopeGuardImpl2(F fun, P1 p1, P2 p2) : m_fun(fun), m_p1(p1), m_p2(p2) { }
211 const P1 m_p1;
217 template <class F, class P1, class P2>
218 inline wxScopeGuardImpl2<F, P1, P2> wxMakeGuard(F fun, P1 p1, P2 p2)
220 return wxScopeGuardImpl2<F, P1, P2>::MakeGuard(fun, p1, p2);
259 template <class Obj, class MemFun, class P1>
263 static wxObjScopeGuardImpl1<Obj, MemFun, P1>
264 MakeObjGuard(Obj& obj, MemFun memFun, P1 p1)
266 return wxObjScopeGuardImpl1<Obj, MemFun, P1>(obj, memFun, p1);
274 wxObjScopeGuardImpl1(Obj& obj, MemFun memFun, P1 p1)
279 const P1 m_p1;
282 template <class Obj, class MemFun, class P1>
283 inline wxObjScopeGuardImpl1<Obj, MemFun, P1>
284 wxMakeObjGuard(Obj& obj, MemFun memFun, P1 p1)
286 return wxObjScopeGuardImpl1<Obj, MemFun, P1>::MakeObjGuard(obj, memFun, p1);
289 template <class Obj, class MemFun, class P1, class P2>
293 static wxObjScopeGuardImpl2<Obj, MemFun, P1, P2>
294 MakeObjGuard(Obj& obj, MemFun memFun, P1 p1, P2 p2)
296 return wxObjScopeGuardImpl2<Obj, MemFun, P1, P2>(obj, memFun, p1, p2);
304 wxObjScopeGuardImpl2(Obj& obj, MemFun memFun, P1 p1, P2 p2)
309 const P1 m_p1;
313 template <class Obj, class MemFun, class P1, class P2>
314 inline wxObjScopeGuardImpl2<Obj, MemFun, P1, P2>
315 wxMakeObjGuard(Obj& obj, MemFun memFun, P1 p1, P2 p2)
317 return wxObjScopeGuardImpl2<Obj, MemFun, P1, P2>::