• Home
  • Raw
  • Download

Lines Matching refs:TEST_NOEXCEPT

54     iterator               begin() TEST_NOEXCEPT         { return v_.begin(); }  in begin()
55 const_iterator begin() const TEST_NOEXCEPT { return v_.begin(); } in begin()
56 iterator end() TEST_NOEXCEPT { return v_.end(); } in end()
57 const_iterator end() const TEST_NOEXCEPT { return v_.end(); } in end()
59 reverse_iterator rbegin() TEST_NOEXCEPT { return v_.rbegin(); } in rbegin()
60 const_reverse_iterator rbegin() const TEST_NOEXCEPT { return v_.rbegin(); } in rbegin()
61 reverse_iterator rend() TEST_NOEXCEPT { return v_.rend(); } in rend()
62 const_reverse_iterator rend() const TEST_NOEXCEPT { return v_.rend(); } in rend()
64 const_iterator cbegin() const TEST_NOEXCEPT { return v_.cbegin(); } in cbegin()
65 const_iterator cend() const TEST_NOEXCEPT { return v_.cend(); } in cend()
66 const_reverse_iterator crbegin() const TEST_NOEXCEPT { return v_.crbegin(); } in crbegin()
67 const_reverse_iterator crend() const TEST_NOEXCEPT { return v_.crend(); } in crend()
69 size_type size() const TEST_NOEXCEPT { return v_.size(); } in size()
70 size_type max_size() const TEST_NOEXCEPT { return v_.max_size(); } in max_size()
71 size_type capacity() const TEST_NOEXCEPT { return v_.capacity(); } in capacity()
72 bool empty() const TEST_NOEXCEPT { return v_.empty(); } in empty()
74 void shrink_to_fit() TEST_NOEXCEPT { v_.shrink_to_fit(); } in shrink_to_fit()
86 value_type* data() TEST_NOEXCEPT { return v_.data(); } in data()
87 const value_type* data() const TEST_NOEXCEPT { return v_.data(); } in data()
118 void clear() TEST_NOEXCEPT { v_.clear(); } in clear()
182 iterator begin() TEST_NOEXCEPT { return l_.begin(); } in begin()
183 const_iterator begin() const TEST_NOEXCEPT { return l_.begin(); } in begin()
184 iterator end() TEST_NOEXCEPT { return l_.end(); } in end()
185 const_iterator end() const TEST_NOEXCEPT { return l_.end(); } in end()
187 reverse_iterator rbegin() TEST_NOEXCEPT { return l_.rbegin(); } in rbegin()
188 const_reverse_iterator rbegin() const TEST_NOEXCEPT { return l_.rbegin(); } in rbegin()
189 reverse_iterator rend() TEST_NOEXCEPT { return l_.rend(); } in rend()
190 const_reverse_iterator rend() const TEST_NOEXCEPT { return l_.rend(); } in rend()
192 const_iterator cbegin() const TEST_NOEXCEPT { return l_.cbegin(); } in cbegin()
193 const_iterator cend() const TEST_NOEXCEPT { return l_.cend(); } in cend()
194 const_reverse_iterator crbegin() const TEST_NOEXCEPT { return l_.crbegin(); } in crbegin()
195 const_reverse_iterator crend() const TEST_NOEXCEPT { return l_.crend(); } in crend()
202 size_type size() const TEST_NOEXCEPT { return l_.size(); } in size()
203 size_type max_size() const TEST_NOEXCEPT { return l_.max_size(); } in max_size()
204 bool empty() const TEST_NOEXCEPT { return l_.empty(); } in empty()
251 void clear() TEST_NOEXCEPT { l_.clear(); } in clear()
291 nasty_mutex() TEST_NOEXCEPT {} in nasty_mutex()
304 bool try_lock() TEST_NOEXCEPT { return true; } in try_lock()
305 void unlock() TEST_NOEXCEPT {} in unlock()