Lines Matching refs:const_iterator
29 typedef typename nested_container::const_iterator const_iterator; typedef
58 const_iterator begin() const TEST_NOEXCEPT { return v_.begin(); } in begin()
60 const_iterator end() const TEST_NOEXCEPT { return v_.end(); } in end()
67 const_iterator cbegin() const TEST_NOEXCEPT { return v_.cbegin(); } in cbegin()
68 const_iterator cend() const TEST_NOEXCEPT { return v_.cend(); } in cend()
101 template <class... Args> iterator emplace(const_iterator pos, Args&&... args) in emplace()
105 iterator insert(const_iterator pos, const value_type& x) { return v_.insert(pos, x); } in insert()
107 …iterator insert(const_iterator pos, value_type&& x) { return v_.insert(pos, std::forward<valu… in insert()
109 …iterator insert(const_iterator pos, size_type n, const value_type& x) { return v_.insert(pos, n, x… in insert()
111 iterator insert(const_iterator pos, InputIterator first, InputIterator last) in insert()
115 …iterator insert(const_iterator pos, std::initializer_list<value_type> il) { return v_.insert(pos, … in insert()
118 iterator erase(const_iterator pos) { return v_.erase(pos); } in erase()
119 iterator erase(const_iterator first, const_iterator last) { return v_.erase(first, last); } in erase()
163 typedef typename nested_container::const_iterator const_iterator; typedef
197 const_iterator begin() const TEST_NOEXCEPT { return l_.begin(); } in begin()
199 const_iterator end() const TEST_NOEXCEPT { return l_.end(); } in end()
206 const_iterator cbegin() const TEST_NOEXCEPT { return l_.cbegin(); } in cbegin()
207 const_iterator cend() const TEST_NOEXCEPT { return l_.cend(); } in cend()
234 template <class... Args> iterator emplace(const_iterator pos, Args&&... args) in emplace()
238 iterator insert(const_iterator pos, const value_type& x) { return l_.insert(pos, x); } in insert()
240 …iterator insert(const_iterator pos, value_type&& x) { return l_.insert(pos, std::forward<valu… in insert()
242 …iterator insert(const_iterator pos, size_type n, const value_type& x) { return l_.insert(pos, n, x… in insert()
244 iterator insert(const_iterator pos, InputIterator first, InputIterator last) in insert()
248 …iterator insert(const_iterator pos, std::initializer_list<value_type> il) { return l_.insert(pos, … in insert()
251 iterator erase(const_iterator pos) { return l_.erase(pos); } in erase()
252 iterator erase(const_iterator first, const_iterator last) { return l_.erase(first, last); } in erase()