Lines Matching refs:__s
63 __throw_logic_error(const char* __s) in __throw_logic_error() argument
64 { throw logic_error(_(__s)); } in __throw_logic_error()
67 __throw_domain_error(const char* __s) in __throw_domain_error() argument
68 { throw domain_error(_(__s)); } in __throw_domain_error()
71 __throw_invalid_argument(const char* __s) in __throw_invalid_argument() argument
72 { throw invalid_argument(_(__s)); } in __throw_invalid_argument()
75 __throw_length_error(const char* __s) in __throw_length_error() argument
76 { throw length_error(_(__s)); } in __throw_length_error()
79 __throw_out_of_range(const char* __s) in __throw_out_of_range() argument
80 { throw out_of_range(_(__s)); } in __throw_out_of_range()
83 __throw_runtime_error(const char* __s) in __throw_runtime_error() argument
84 { throw runtime_error(_(__s)); } in __throw_runtime_error()
87 __throw_range_error(const char* __s) in __throw_range_error() argument
88 { throw range_error(_(__s)); } in __throw_range_error()
91 __throw_overflow_error(const char* __s) in __throw_overflow_error() argument
92 { throw overflow_error(_(__s)); } in __throw_overflow_error()
95 __throw_underflow_error(const char* __s) in __throw_underflow_error() argument
96 { throw underflow_error(_(__s)); } in __throw_underflow_error()
99 __throw_ios_failure(const char* __s) in __throw_ios_failure() argument
100 { throw ios_base::failure(_(__s)); } in __throw_ios_failure()