• 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()
122 void clear() TEST_NOEXCEPT { v_.clear(); } in clear()
186 iterator begin() TEST_NOEXCEPT { return l_.begin(); } in begin()
187 const_iterator begin() const TEST_NOEXCEPT { return l_.begin(); } in begin()
188 iterator end() TEST_NOEXCEPT { return l_.end(); } in end()
189 const_iterator end() const TEST_NOEXCEPT { return l_.end(); } in end()
191 reverse_iterator rbegin() TEST_NOEXCEPT { return l_.rbegin(); } in rbegin()
192 const_reverse_iterator rbegin() const TEST_NOEXCEPT { return l_.rbegin(); } in rbegin()
193 reverse_iterator rend() TEST_NOEXCEPT { return l_.rend(); } in rend()
194 const_reverse_iterator rend() const TEST_NOEXCEPT { return l_.rend(); } in rend()
196 const_iterator cbegin() const TEST_NOEXCEPT { return l_.cbegin(); } in cbegin()
197 const_iterator cend() const TEST_NOEXCEPT { return l_.cend(); } in cend()
198 const_reverse_iterator crbegin() const TEST_NOEXCEPT { return l_.crbegin(); } in crbegin()
199 const_reverse_iterator crend() const TEST_NOEXCEPT { return l_.crend(); } in crend()
206 size_type size() const TEST_NOEXCEPT { return l_.size(); } in size()
207 size_type max_size() const TEST_NOEXCEPT { return l_.max_size(); } in max_size()
208 bool empty() const TEST_NOEXCEPT { return l_.empty(); } in empty()
259 void clear() TEST_NOEXCEPT { l_.clear(); } in clear()
299 nasty_mutex() TEST_NOEXCEPT {} in nasty_mutex()
312 bool try_lock() TEST_NOEXCEPT { return true; } in try_lock()
313 void unlock() TEST_NOEXCEPT {} in unlock()