Lines Matching refs:_Args
42 template <bool _UsesAlloc, class _Tp, class _Alloc, class ..._Args>
48 template <class _Tp, class _Alloc, class ..._Args>
49 struct __lfts_uses_alloc_ctor_imp<true, _Tp, _Alloc, _Args...>
52 = is_constructible<_Tp, allocator_arg_t, _Alloc, _Args...>::value;
58 is_constructible<_Tp, _Args..., _Alloc>
67 template <class _Tp, class _Alloc, class ..._Args>
72 , _Tp, _Alloc, _Args...
77 template <class _Tp, class _Alloc, class ..._Args>
80 _Tp * __store, const _Alloc & __a, _Args &&... __args)
83 typename __lfts_uses_alloc_ctor<_Tp, _Alloc, _Args...>::type()
84 , __store, __a, _VSTD::forward<_Args>(__args)...