Lines Matching refs:insert
111 pair<iterator, bool> insert(const value_type& obj);
112 pair<iterator, bool> insert(value_type&& obj);
113 iterator insert(const_iterator hint, const value_type& obj);
114 iterator insert(const_iterator hint, value_type&& obj);
116 void insert(InputIterator first, InputIterator last);
117 void insert(initializer_list<value_type>);
121 insert_return_type insert(node_type&& nh); // C++17
122 iterator insert(const_iterator hint, node_type&& nh); // C++17
275 iterator insert(const value_type& obj);
276 iterator insert(value_type&& obj);
277 iterator insert(const_iterator hint, const value_type& obj);
278 iterator insert(const_iterator hint, value_type&& obj);
280 void insert(InputIterator first, InputIterator last);
281 void insert(initializer_list<value_type>);
285 iterator insert(node_type&& nh); // C++17
286 iterator insert(const_iterator hint, node_type&& nh); // C++17
550 pair<iterator, bool> insert(value_type&& __x)
554 iterator insert(const_iterator __p, value_type&& __x)
557 "unordered_set::insert(const_iterator, value_type&&) called with an iterator not"
559 return insert(_VSTD::move(__x)).first;
562 iterator insert(const_iterator, value_type&& __x)
563 {return insert(_VSTD::move(__x)).first;}
566 void insert(initializer_list<value_type> __il)
567 {insert(__il.begin(), __il.end());}
570 pair<iterator, bool> insert(const value_type& __x)
575 iterator insert(const_iterator __p, const value_type& __x)
578 … "unordered_set::insert(const_iterator, const value_type&) called with an iterator not"
580 return insert(__x).first;
583 iterator insert(const_iterator, const value_type& __x)
584 {return insert(__x).first;}
588 void insert(_InputIterator __first, _InputIterator __last);
602 insert_return_type insert(node_type&& __nh)
605 "node_type with incompatible allocator passed to unordered_set::insert()");
610 iterator insert(const_iterator __h, node_type&& __nh)
613 "node_type with incompatible allocator passed to unordered_set::insert()");
764 insert(__first, __last);
778 insert(__first, __last);
792 insert(__first, __last);
815 insert(__u.begin(), __u.end());
827 insert(__u.begin(), __u.end());
872 insert(__il.begin(), __il.end());
885 insert(__il.begin(), __il.end());
898 insert(__il.begin(), __il.end());
927 unordered_set<_Value, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,
1137 iterator insert(value_type&& __x) {return __table_.__insert_multi(_VSTD::move(__x));}
1139 iterator insert(const_iterator __p, value_type&& __x)
1142 void insert(initializer_list<value_type> __il)
1143 {insert(__il.begin(), __il.end());}
1147 iterator insert(const value_type& __x) {return __table_.__insert_multi(__x);}
1150 iterator insert(const_iterator __p, const value_type& __x)
1155 void insert(_InputIterator __first, _InputIterator __last);
1159 iterator insert(node_type&& __nh)
1162 "node_type with incompatible allocator passed to unordered_multiset::insert()");
1167 iterator insert(const_iterator __hint, node_type&& __nh)
1170 "node_type with incompatible allocator passed to unordered_multiset::insert()");
1333 insert(__first, __last);
1347 insert(__first, __last);
1361 insert(__first, __last);
1384 insert(__u.begin(), __u.end());
1396 insert(__u.begin(), __u.end());
1441 insert(__il.begin(), __il.end());
1454 insert(__il.begin(), __il.end());
1467 insert(__il.begin(), __il.end());
1497 unordered_multiset<_Value, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,