Home | History | Annotate | Download | only in base

Lines Matching refs:p1

1031 template <typename Sig, typename P1>
1043 !internal::UnsafeBindtoRefCountedArg<P1>::value,
1045 COMPILE_ASSERT(!IsMethod::value || !is_array<P1>::value,
1058 InvokerStorage1(Sig f, const P1& p1)
1059 : f_(f), p1_(static_cast<typename ParamTraits<P1>::StorageType>(p1)) {
1060 MaybeRefcount<IsMethod, P1>::AddRef(p1_);
1064 MaybeRefcount<IsMethod, P1>::Release(p1_);
1068 typename ParamTraits<P1>::StorageType p1_;
1071 template <typename Sig, typename P1, typename P2>
1083 !internal::UnsafeBindtoRefCountedArg<P1>::value,
1085 COMPILE_ASSERT(!IsMethod::value || !is_array<P1>::value,
1101 InvokerStorage2(Sig f, const P1& p1, const P2& p2)
1102 : f_(f), p1_(static_cast<typename ParamTraits<P1>::StorageType>(p1)),
1104 MaybeRefcount<IsMethod, P1>::AddRef(p1_);
1108 MaybeRefcount<IsMethod, P1>::Release(p1_);
1112 typename ParamTraits<P1>::StorageType p1_;
1116 template <typename Sig, typename P1, typename P2, typename P3>
1128 !internal::UnsafeBindtoRefCountedArg<P1>::value,
1130 COMPILE_ASSERT(!IsMethod::value || !is_array<P1>::value,
1149 InvokerStorage3(Sig f, const P1& p1, const P2& p2, const P3& p3)
1150 : f_(f), p1_(static_cast<typename ParamTraits<P1>::StorageType>(p1)),
1153 MaybeRefcount<IsMethod, P1>::AddRef(p1_);
1157 MaybeRefcount<IsMethod, P1>::Release(p1_);
1161 typename ParamTraits<P1>::StorageType p1_;
1166 template <typename Sig, typename P1, typename P2, typename P3, typename P4>
1178 !internal::UnsafeBindtoRefCountedArg<P1>::value,
1180 COMPILE_ASSERT(!IsMethod::value || !is_array<P1>::value,
1202 InvokerStorage4(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4)
1203 : f_(f), p1_(static_cast<typename ParamTraits<P1>::StorageType>(p1)),
1207 MaybeRefcount<IsMethod, P1>::AddRef(p1_);
1211 MaybeRefcount<IsMethod, P1>::Release(p1_);
1215 typename ParamTraits<P1>::StorageType p1_;
1221 template <typename Sig, typename P1, typename P2, typename P3, typename P4,
1234 !internal::UnsafeBindtoRefCountedArg<P1>::value,
1236 COMPILE_ASSERT(!IsMethod::value || !is_array<P1>::value,
1261 InvokerStorage5(Sig f, const P1& p1, const P2& p2, const P3& p3,
1263 : f_(f), p1_(static_cast<typename ParamTraits<P1>::StorageType>(p1)),
1268 MaybeRefcount<IsMethod, P1>::AddRef(p1_);
1272 MaybeRefcount<IsMethod, P1>::Release(p1_);
1276 typename ParamTraits<P1>::StorageType p1_;
1283 template <typename Sig, typename P1, typename P2, typename P3, typename P4,
1296 !internal::UnsafeBindtoRefCountedArg<P1>::value,
1298 COMPILE_ASSERT(!IsMethod::value || !is_array<P1>::value,
1326 InvokerStorage6(Sig f, const P1& p1, const P2& p2, const P3& p3,
1328 : f_(f), p1_(static_cast<typename ParamTraits<P1>::StorageType>(p1)),
1334 MaybeRefcount<IsMethod, P1>::AddRef(p1_);
1338 MaybeRefcount<IsMethod, P1>::Release(p1_);
1342 typename ParamTraits<P1>::StorageType p1_;