Home | History | Annotate | Download | only in support

Lines Matching defs:iterator

27     typedef typename nested_container::iterator               iterator;
54 iterator begin() TEST_NOEXCEPT { return v_.begin(); }
56 iterator end() TEST_NOEXCEPT { return v_.end(); }
98 template <class... Args> iterator emplace(const_iterator pos, Args&&... args)
102 iterator insert(const_iterator pos, const value_type& x) { return v_.insert(pos, x); }
104 iterator insert(const_iterator pos, value_type&& x) { return v_.insert(pos, std::forward<value_type>(x)); }
106 iterator insert(const_iterator pos, size_type n, const value_type& x) { return v_.insert(pos, n, x); }
108 iterator insert(const_iterator pos, InputIterator first, InputIterator last)
112 iterator insert(const_iterator pos, std::initializer_list<value_type> il) { return v_.insert(pos, il); }
115 iterator erase(const_iterator pos) { return v_.erase(pos); }
116 iterator erase(const_iterator first, const_iterator last) { return v_.erase(first, last); }
149 typedef typename nested_container::iterator iterator;
182 iterator begin() TEST_NOEXCEPT { return l_.begin(); }
184 iterator end() TEST_NOEXCEPT { return l_.end(); }
220 template <class... Args> iterator emplace(const_iterator pos, Args&&... args)
224 iterator insert(const_iterator pos, const value_type& x) { return l_.insert(pos, x); }
226 iterator insert(const_iterator pos, value_type&& x) { return l_.insert(pos, std::forward<value_type>(x)); }
228 iterator insert(const_iterator pos, size_type n, const value_type& x) { return l_.insert(pos, n, x); }
230 iterator insert(const_iterator pos, InputIterator first, InputIterator last)
234 iterator insert(const_iterator pos, std::initializer_list<value_type> il) { return l_.insert(pos, il); }
237 iterator erase(const_iterator pos) { return l_.erase(pos); }
238 iterator erase(const_iterator pos, const_iterator last) { return l_.erase(pos, last); }