Lines Matching refs:__args
720 reference emplace_back(_Args&&... __args);
722 void emplace_back(_Args&&... __args);
734 iterator emplace(const_iterator __position, _Args&&... __args);
842 void __emplace_back_slow_path(_Args&&... __args);
1665 vector<_Tp, _Allocator>::__emplace_back_slow_path(_Args&&... __args)
1669 // __v.emplace_back(_VSTD::forward<_Args>(__args)...);
1670 …lloc_traits::construct(__a, _VSTD::__to_raw_pointer(__v.__end_), _VSTD::forward<_Args>(__args)...);
1683 vector<_Tp, _Allocator>::emplace_back(_Args&&... __args)
1690 _VSTD::forward<_Args>(__args)...);
1695 __emplace_back_slow_path(_VSTD::forward<_Args>(__args)...);
1848 vector<_Tp, _Allocator>::emplace(const_iterator __position, _Args&&... __args)
1863 _VSTD::forward<_Args>(__args)...);
1868 … __temp_value<value_type, _Allocator> __tmp(this->__alloc(), _VSTD::forward<_Args>(__args)...);
1878 __v.emplace_back(_VSTD::forward<_Args>(__args)...);
2392 _LIBCPP_INLINE_VISIBILITY reference emplace_back(_Args&&... __args)
2394 _LIBCPP_INLINE_VISIBILITY void emplace_back(_Args&&... __args)
2397 push_back ( value_type ( _VSTD::forward<_Args>(__args)... ));
2408 _LIBCPP_INLINE_VISIBILITY iterator emplace(const_iterator position, _Args&&... __args)
2409 { return insert ( position, value_type ( _VSTD::forward<_Args>(__args)... )); }