• Home
  • Raw
  • Download

Lines Matching refs:_Args

537 template <class ..._Args>
1141 template <class _Key, class ..._Args>
1143 __emplace_unique_key_args(_Key const&, _Args&&... __args);
1144 template <class _Key, class ..._Args>
1146 __emplace_hint_unique_key_args(const_iterator, _Key const&, _Args&&...);
1148 template <class... _Args>
1149 pair<iterator, bool> __emplace_unique_impl(_Args&&... __args);
1151 template <class... _Args>
1152 iterator __emplace_hint_unique_impl(const_iterator __p, _Args&&... __args);
1154 template <class... _Args>
1155 iterator __emplace_multi(_Args&&... __args);
1157 template <class... _Args>
1158 iterator __emplace_hint_multi(const_iterator __p, _Args&&... __args);
1177 template <class... _Args>
1179 pair<iterator, bool> __emplace_unique(_Args&&... __args) {
1180 return __emplace_unique_impl(_VSTD::forward<_Args>(__args)...);
1222 template <class... _Args>
1224 iterator __emplace_hint_unique(const_iterator __p, _Args&&... __args) {
1225 return __emplace_hint_unique_impl(__p, _VSTD::forward<_Args>(__args)...);
1250 template <class _Key, class _Args>
1252 pair<iterator, bool> __emplace_unique_key_args(_Key const&, _Args& __args);
1253 template <class _Key, class _Args>
1255 iterator __emplace_hint_unique_key_args(const_iterator, _Key const&, _Args&);
1469 template <class ..._Args>
1470 __node_holder __construct_node(_Args&& ...__args);
2140 template <class _Key, class... _Args>
2142 __tree<_Tp, _Compare, _Allocator>::__emplace_unique_key_args(_Key const& __k, _Args&&... __args)
2145 template <class _Key, class _Args>
2147 __tree<_Tp, _Compare, _Allocator>::__emplace_unique_key_args(_Key const& __k, _Args& __args)
2157 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
2171 template <class _Key, class... _Args>
2174 const_iterator __p, _Key const& __k, _Args&&... __args)
2177 template <class _Key, class _Args>
2180 const_iterator __p, _Key const& __k, _Args& __args)
2190 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
2204 template <class ..._Args>
2206 __tree<_Tp, _Compare, _Allocator>::__construct_node(_Args&& ...__args)
2208 static_assert(!__is_tree_value_type<_Args...>::value,
2212 …__node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), _VSTD::forward<_Args>(__args)…
2219 template <class... _Args>
2221 __tree<_Tp, _Compare, _Allocator>::__emplace_unique_impl(_Args&&... __args)
2223 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
2238 template <class... _Args>
2240 __tree<_Tp, _Compare, _Allocator>::__emplace_hint_unique_impl(const_iterator __p, _Args&&... __args)
2242 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
2256 template <class... _Args>
2258 __tree<_Tp, _Compare, _Allocator>::__emplace_multi(_Args&&... __args)
2260 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
2268 template <class... _Args>
2271 _Args&&... __args)
2273 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);