Lines Matching refs:__msg
63 explicit __libcpp_refstring(const char* __msg);
221 void __throw_logic_error(const char*__msg)
224 throw logic_error(__msg);
226 ((void)__msg);
232 void __throw_domain_error(const char*__msg)
235 throw domain_error(__msg);
237 ((void)__msg);
243 void __throw_invalid_argument(const char*__msg)
246 throw invalid_argument(__msg);
248 ((void)__msg);
254 void __throw_length_error(const char*__msg)
257 throw length_error(__msg);
259 ((void)__msg);
265 void __throw_out_of_range(const char*__msg)
268 throw out_of_range(__msg);
270 ((void)__msg);
276 void __throw_range_error(const char*__msg)
279 throw range_error(__msg);
281 ((void)__msg);
287 void __throw_overflow_error(const char*__msg)
290 throw overflow_error(__msg);
292 ((void)__msg);
298 void __throw_underflow_error(const char*__msg)
301 throw underflow_error(__msg);
303 ((void)__msg);