Lines Matching refs:insert

13383  iter = container->insert(iter, __value);
13391 iter = container->insert(iter, std::move(__value));
22044 insert(const_iterator __p, size_type __n, _CharT __c)
22055 insert(const_iterator __p, _InputIterator __beg, _InputIterator __end)
22064 insert(iterator __p, initializer_list<_CharT> __l)
22067 this->insert(__p - begin(), __l.begin(), __l.size());
22071 insert(size_type __pos1, const basic_string& __str)
22076 insert(size_type __pos1, const basic_string& __str,
22079 + __str._M_check(__pos2, "basic_string::insert"),
22083 insert(size_type __pos, const _CharT* __s, size_type __n)
22087 insert(size_type __pos, const _CharT* __s)
22095 insert(size_type __pos, size_type __n, _CharT __c)
22096 { return _M_replace_aux(_M_check(__pos, "basic_string::insert"),
22100 insert(__const_iterator __p, _CharT __c)
22552 { return std::move(__rhs.insert(0, __lhs)); }
22562 return __cond ? std::move(__rhs.insert(0, __lhs))
22570 { return std::move(__rhs.insert(0, __lhs)); }
22576 { return std::move(__rhs.insert(0, 1, __lhs)); }
60824 __attribute__ ((warn_unused_result)) T* insert(T* aP, U&& aVal);
61295 Vector<T, N, AP>::insert(T* aP, U&& aVal)
97163 template<typename U> T* insert(T* aP, U&& aVal) {
97164 return vec().insert(aP, mozilla::Forward<U>(aVal));
98253 __attribute__ ((warn_unused_result)) bool insert(T* p, const T& val) { return vector.insert(p, val); }
130438 insert(this->_M_impl._M_finish, __new_size - __len, __x);
130612 insert(const_iterator __position, const value_type& __x);
130615 insert(const_iterator __position, value_type&& __x)
130619 insert(const_iterator __p, initializer_list<value_type> __l)
130620 { return this->insert(__p, __l.begin(), __l.end()); }
130623 insert(const_iterator __position, size_type __n, const value_type& __x)
130633 insert(const_iterator __position, _InputIterator __first,
130755 insert(end(), __mid, __last);
130769 insert(end(), __n - size(), __val);
131146 insert(this->_M_impl._M_finish, __mid, __x.end());
131218 insert(const_iterator __position, const value_type& __x)
131307 insert(end(), __first, __last);
132549 insert(end(), __new_size - size(), __x);
132700 insert(const_iterator __position, const value_type& __x);
132703 insert(const_iterator __position, value_type&& __x)
132707 insert(const_iterator __position, initializer_list<value_type> __l)
132708 { return this->insert(__position, __l.begin(), __l.end()); }
132711 insert(const_iterator __position, size_type __n, const value_type& __x)
132721 insert(const_iterator __position, _InputIterator __first,
133909 insert(const_iterator __position, const bool& __x = bool())
133927 insert(const_iterator __position,
133937 insert(const_iterator __position, size_type __n, const bool& __x)
133951 insert(const_iterator __p, initializer_list<bool> __l)
133952 { return this->insert(__p, __l.begin(), __l.end()); }
133981 insert(end(), __new_size - size(), __x);
134011 { return insert(__pos, bool(__args...)); }
134101 insert(end(), __n - size(), __x);
134122 insert(end(), __first, __last);
134138 insert(end(), __mid, __last);
134170 __pos = insert(__pos, *__first);
134283 insert(const_iterator __position, const value_type& __x)
134433 insert(end(), __first, __last);
134782 __pos = insert(__pos, *__first);
135338 c.insert(c.end(), __first, __last);
135349 c.insert(c.end(), __first, __last);
151897 void insert(T* aElem)
151962 void insert(T* aElement)
151969 mList.insert(aElement);
152037 mPendingMarkers.insert(marker);