• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WTF-7600.1.24/wtf/

Lines Matching refs:p2

134     R operator()(P1 p1, P2 p2)
136 return m_function(p1, p2);
154 R operator()(P1 p1, P2 p2, P3 p3)
156 return m_function(p1, p2, p3);
174 R operator()(P1 p1, P2 p2, P3 p3, P4 p4)
176 return m_function(p1, p2, p3, p4);
194 R operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
196 return m_function(p1, p2, p3, p4, p5);
272 R operator()(C* c, P1 p1, P2 p2)
274 return (c->*m_function)(p1, p2);
277 R operator()(const WeakPtr<C>& c, P1 p1, P2 p2)
282 return (obj->*m_function)(p1, p2);
300 R operator()(C* c, P1 p1, P2 p2, P3 p3)
302 return (c->*m_function)(p1, p2, p3);
305 R operator()(const WeakPtr<C>& c, P1 p1, P2 p2, P3 p3)
310 return (obj->*m_function)(p1, p2, p3);
328 R operator()(C* c, P1 p1, P2 p2, P3 p3, P4 p4)
330 return (c->*m_function)(p1, p2, p3, p4);
333 R operator()(const WeakPtr<C>& c, P1 p1, P2 p2, P3 p3, P4 p4)
338 return (obj->*m_function)(p1, p2, p3, p4);
356 R operator()(C* c, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
358 return (c->*m_function)(p1, p2, p3, p4, p5);
361 R operator()(const WeakPtr<C>& c, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
366 return (obj->*m_function)(p1, p2, p3, p4, p5);
507 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2)
510 , m_p2(ParamStorageTraits<P2>::wrap(p2))
534 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2, const P3& p3)
537 , m_p2(ParamStorageTraits<P2>::wrap(p2))
563 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2, const P3& p3, const P4& p4)
566 , m_p2(ParamStorageTraits<P2>::wrap(p2))
594 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5)
597 , m_p2(ParamStorageTraits<P2>::wrap(p2))
627 BoundFunctionImpl(FunctionWrapper functionWrapper, const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6)
630 , m_p2(ParamStorageTraits<P2>::wrap(p2))