Home | History | Annotate | Download | only in base

Lines Matching refs:p4

67 template <typename Sig, typename P1, typename P2, typename P3, typename P4>
68 internal::InvokerStorageHolder<internal::InvokerStorage4<Sig,P1, P2, P3, P4> >
69 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4) {
71 new internal::InvokerStorage4<Sig, P1, P2, P3, P4>(
72 f, p1, p2, p3, p4));
75 template <typename Sig, typename P1, typename P2, typename P3, typename P4,
77 internal::InvokerStorageHolder<internal::InvokerStorage5<Sig,P1, P2, P3, P4,
79 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4,
82 new internal::InvokerStorage5<Sig, P1, P2, P3, P4, P5>(
83 f, p1, p2, p3, p4, p5));
86 template <typename Sig, typename P1, typename P2, typename P3, typename P4,
88 internal::InvokerStorageHolder<internal::InvokerStorage6<Sig,P1, P2, P3, P4,
90 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4,
93 new internal::InvokerStorage6<Sig, P1, P2, P3, P4, P5, P6>(
94 f, p1, p2, p3, p4, p5, p6));