Lines Matching refs:Args
311 // EmplaceConstructible into vector<X, TaggingAllocator<X>> from args.
312 template<typename... Args>
313 Tag_X(Ctor_Tag, Args&&...) { }
348 template<typename... Args>
349 void construct(Tag_X* p, Args&&... args)
350 { ::new((void*)p) Tag_X(Ctor_Tag{}, std::forward<Args>(args)...); }
352 template<typename U, typename... Args>
353 void construct(U* p, Args&&... args)
354 { ::new((void*)p) U(std::forward<Args>(args)...); }
356 template<typename U, typename... Args>