Lines Matching refs:insert
112 pair<iterator,bool> insert(const value_type& v);
113 pair<iterator,bool> insert(value_type&& v);
114 iterator insert(const_iterator position, const value_type& v);
115 iterator insert(const_iterator position, value_type&& v);
117 void insert(InputIterator first, InputIterator last);
118 void insert(initializer_list<value_type> il);
122 insert_return_type insert(node_type&& nh); // C++17
123 iterator insert(const_iterator hint, node_type&& nh); // C++17
312 iterator insert(const value_type& v);
313 iterator insert(value_type&& v);
314 iterator insert(const_iterator position, const value_type& v);
315 iterator insert(const_iterator position, value_type&& v);
317 void insert(InputIterator first, InputIterator last);
318 void insert(initializer_list<value_type> il);
322 iterator insert(node_type&& nh); // C++17
323 iterator insert(const_iterator hint, node_type&& nh); // C++17
509 insert(__f, __l);
518 insert(__f, __l);
532 insert(__s.begin(), __s.end());
557 insert(__s.begin(), __s.end());
567 insert(__il.begin(), __il.end());
575 insert(__il.begin(), __il.end());
651 pair<iterator,bool> insert(const value_type& __v)
654 iterator insert(const_iterator __p, const value_type& __v)
659 void insert(_InputIterator __f, _InputIterator __l)
667 pair<iterator,bool> insert(value_type&& __v)
671 iterator insert(const_iterator __p, value_type&& __v)
675 void insert(initializer_list<value_type> __il)
676 {insert(__il.begin(), __il.end());}
692 insert_return_type insert(node_type&& __nh)
695 "node_type with incompatible allocator passed to set::insert()");
700 iterator insert(const_iterator __hint, node_type&& __nh)
703 "node_type with incompatible allocator passed to set::insert()");
850 insert(__e, _VSTD::move(__s.__tree_.remove(__s.begin())->__value_));
997 insert(__f, __l);
1013 insert(__f, __l);
1021 insert(__s.begin(), __s.end());
1046 insert(__s.begin(), __s.end());
1054 insert(__il.begin(), __il.end());
1062 insert(__il.begin(), __il.end());
1138 iterator insert(const value_type& __v)
1141 iterator insert(const_iterator __p, const value_type& __v)
1146 void insert(_InputIterator __f, _InputIterator __l)
1154 iterator insert(value_type&& __v)
1158 iterator insert(const_iterator __p, value_type&& __v)
1162 void insert(initializer_list<value_type> __il)
1163 {insert(__il.begin(), __il.end());}
1178 iterator insert(node_type&& __nh)
1181 "node_type with incompatible allocator passed to multiset::insert()");
1186 iterator insert(const_iterator __hint, node_type&& __nh)
1189 "node_type with incompatible allocator passed to multiset::insert()");
1338 insert(__e, _VSTD::move(__s.__tree_.remove(__s.begin())->__value_));