Lines Matching refs:P
651 template<typename T, typename... P>
653 stored_pack<P...> pack;
655 call( [where](const typename std::decay<P>::type&... args ){
659 construct_by_args( P&& ... args ) : pack(std::forward<P>(args)...) {}
678 …template<typename... P> callback_leaf( P&& ... params ) : Constructor(std::forward<P>(params)...) …
697 template<typename... P>
698 static callback_base* make( P&& ... params ) {
700 return new(where) callback_leaf( std::forward<P>(params)... );
869 template <typename P1, typename... P,
874 enumerable_thread_specific( P1&& arg1, P&& ... args ) : my_construct_callback(
875 …callback_leaf<construct_by_args<T,P1,P...> >::make( std::forward<P1>(arg1), std::forward<P>(args).…