Lines Matching refs:_NOEXCEPT

51     iterator               begin() _NOEXCEPT         { return v_.begin(); }  in begin()
52 const_iterator begin() const _NOEXCEPT { return v_.begin(); } in begin()
53 iterator end() _NOEXCEPT { return v_.end(); } in end()
54 const_iterator end() const _NOEXCEPT { return v_.end(); } in end()
56 reverse_iterator rbegin() _NOEXCEPT { return v_.rbegin(); } in rbegin()
57 const_reverse_iterator rbegin() const _NOEXCEPT { return v_.rbegin(); } in rbegin()
58 reverse_iterator rend() _NOEXCEPT { return v_.rend(); } in rend()
59 const_reverse_iterator rend() const _NOEXCEPT { return v_.rend(); } in rend()
61 const_iterator cbegin() const _NOEXCEPT { return v_.cbegin(); } in cbegin()
62 const_iterator cend() const _NOEXCEPT { return v_.cend(); } in cend()
63 const_reverse_iterator crbegin() const _NOEXCEPT { return v_.crbegin(); } in crbegin()
64 const_reverse_iterator crend() const _NOEXCEPT { return v_.crend(); } in crend()
66 size_type size() const _NOEXCEPT { return v_.size(); } in size()
67 size_type max_size() const _NOEXCEPT { return v_.max_size(); } in max_size()
68 size_type capacity() const _NOEXCEPT { return v_.capacity(); } in capacity()
69 bool empty() const _NOEXCEPT { return v_.empty(); } in empty()
71 void shrink_to_fit() _NOEXCEPT { v_.shrink_to_fit(); } in shrink_to_fit()
83 value_type* data() _NOEXCEPT { return v_.data(); } in data()
84 const value_type* data() const _NOEXCEPT { return v_.data(); } in data()
119 void clear() _NOEXCEPT { v_.clear(); } in clear()
178 iterator begin() _NOEXCEPT { return l_.begin(); } in begin()
179 const_iterator begin() const _NOEXCEPT { return l_.begin(); } in begin()
180 iterator end() _NOEXCEPT { return l_.end(); } in end()
181 const_iterator end() const _NOEXCEPT { return l_.end(); } in end()
183 reverse_iterator rbegin() _NOEXCEPT { return l_.rbegin(); } in rbegin()
184 const_reverse_iterator rbegin() const _NOEXCEPT { return l_.rbegin(); } in rbegin()
185 reverse_iterator rend() _NOEXCEPT { return l_.rend(); } in rend()
186 const_reverse_iterator rend() const _NOEXCEPT { return l_.rend(); } in rend()
188 const_iterator cbegin() const _NOEXCEPT { return l_.cbegin(); } in cbegin()
189 const_iterator cend() const _NOEXCEPT { return l_.cend(); } in cend()
190 const_reverse_iterator crbegin() const _NOEXCEPT { return l_.crbegin(); } in crbegin()
191 const_reverse_iterator crend() const _NOEXCEPT { return l_.crend(); } in crend()
198 size_type size() const _NOEXCEPT { return l_.size(); } in size()
199 size_type max_size() const _NOEXCEPT { return l_.max_size(); } in max_size()
200 bool empty() const _NOEXCEPT { return l_.empty(); } in empty()
246 void clear() _NOEXCEPT { l_.clear(); } in clear()