Lines Matching refs:__args

370 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args)
371 -> decltype((_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...))
373 return (_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...);
380 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args)
381 -> decltype(((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...))
383 return ((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...);
413 __invoke(_Fp&& __f, _Args&& ...__args)
414 -> decltype(_VSTD::forward<_Fp>(__f)(_VSTD::forward<_Args>(__args)...))
416 return _VSTD::forward<_Fp>(__f)(_VSTD::forward<_Args>(__args)...);
436 static _Ret __call(_Args&&... __args) {
437 return __invoke(_VSTD::forward<_Args>(__args)...);
467 static void __call(_Args&&... __args) {
468 __invoke(_VSTD::forward<_Args>(__args)...);
520 operator() (_ArgTypes&&... __args) const
522 return __invoke(get(), _VSTD::forward<_ArgTypes>(__args)...);
689 …construct_impl (integral_constant<int, 0>, _Tp *__storage, const _Allocator &, _Args &&... __args )
691 new (__storage) _Tp (_VSTD::forward<_Args>(__args)...);
696 …struct_impl (integral_constant<int, 1>, _Tp *__storage, const _Allocator &__a, _Args &&... __args )
698 new (__storage) _Tp (allocator_arg, __a, _VSTD::forward<_Args>(__args)...);
703 …struct_impl (integral_constant<int, 2>, _Tp *__storage, const _Allocator &__a, _Args &&... __args )
705 new (__storage) _Tp (_VSTD::forward<_Args>(__args)..., __a);
710 void __user_alloc_construct (_Tp *__storage, const _Allocator &__a, _Args &&... __args)
714 __storage, __a, _VSTD::forward<_Args>(__args)...