reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
474 construct(allocator_type& __a, _Up* __p, _Args&&... __args) 475 { __a.construct(__p, std::forward<_Args>(__args)...); }usr/include/c++/7.4.0/bits/move.h
72 constexpr _Tp&& 73 forward(typename std::remove_reference<_Tp>::type& __t) noexcept 83 constexpr _Tp&& 84 forward(typename std::remove_reference<_Tp>::type&& __t) noexceptusr/include/c++/7.4.0/bits/shared_ptr.h
343 _Args&&... __args) 344 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...) 688 allocate_shared(const _Alloc& __a, _Args&&... __args) 691 std::forward<_Args>(__args)...); 703 make_shared(_Args&&... __args) 707 std::forward<_Args>(__args)...);usr/include/c++/7.4.0/bits/shared_ptr_base.h
1317 _Args&&... __args) 1328 std::forward<_Args>(__args)...);usr/include/c++/7.4.0/ext/new_allocator.h
135 construct(_Up* __p, _Args&&... __args) 136 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }usr/include/c++/7.4.0/type_traits
1629 { typedef _Tp type; };