Lines Matching refs:__args
317 static _Ret __call(_Args&&... __args) {
318 return __invoke(_VSTD::forward<_Args>(__args)...);
348 static void __call(_Args&&... __args) {
349 __invoke(_VSTD::forward<_Args>(__args)...);
401 operator() (_ArgTypes&&... __args) const {
402 return __invoke(get(), _VSTD::forward<_ArgTypes>(__args)...);
628 …construct_impl (integral_constant<int, 0>, _Tp *__storage, const _Allocator &, _Args &&... __args )
630 new (__storage) _Tp (_VSTD::forward<_Args>(__args)...);
636 …struct_impl (integral_constant<int, 1>, _Tp *__storage, const _Allocator &__a, _Args &&... __args )
638 new (__storage) _Tp (allocator_arg, __a, _VSTD::forward<_Args>(__args)...);
644 …struct_impl (integral_constant<int, 2>, _Tp *__storage, const _Allocator &__a, _Args &&... __args )
646 new (__storage) _Tp (_VSTD::forward<_Args>(__args)..., __a);