Lines Matching refs:__msg
64 explicit __libcpp_refstring(const char* __msg);
189 void __throw_logic_error(const char*__msg)
192 throw logic_error(__msg);
194 ((void)__msg);
200 void __throw_domain_error(const char*__msg)
203 throw domain_error(__msg);
205 ((void)__msg);
211 void __throw_invalid_argument(const char*__msg)
214 throw invalid_argument(__msg);
216 ((void)__msg);
222 void __throw_length_error(const char*__msg)
225 throw length_error(__msg);
227 ((void)__msg);
233 void __throw_out_of_range(const char*__msg)
236 throw out_of_range(__msg);
238 ((void)__msg);
244 void __throw_range_error(const char*__msg)
247 throw range_error(__msg);
249 ((void)__msg);
255 void __throw_overflow_error(const char*__msg)
258 throw overflow_error(__msg);
260 ((void)__msg);
266 void __throw_underflow_error(const char*__msg)
269 throw underflow_error(__msg);
271 ((void)__msg);