Lines Matching refs:const

34     explicit xxx_error(const string& what_arg);
35 explicit xxx_error(const char* what_arg);
37 virtual const char* what() const noexcept // returns what_arg
59 const char* __imp_;
61 bool __uses_refcount() const;
63 explicit __libcpp_refstring(const char* __msg);
64 __libcpp_refstring(const __libcpp_refstring& __s) _NOEXCEPT;
65 __libcpp_refstring& operator=(const __libcpp_refstring& __s) _NOEXCEPT;
68 const char* c_str() const _NOEXCEPT {return __imp_;}
84 explicit logic_error(const string&);
85 explicit logic_error(const char*);
87 logic_error(const logic_error&) _NOEXCEPT;
88 logic_error& operator=(const logic_error&) _NOEXCEPT;
92 virtual const char* what() const _NOEXCEPT;
95 explicit logic_error(const _VSTD::string&); // Symbol uses versioned std::string
96 _LIBCPP_INLINE_VISIBILITY explicit logic_error(const char* __s) : exception(__s) {}
107 explicit runtime_error(const string&);
108 explicit runtime_error(const char*);
110 runtime_error(const runtime_error&) _NOEXCEPT;
111 runtime_error& operator=(const runtime_error&) _NOEXCEPT;
115 virtual const char* what() const _NOEXCEPT;
118 explicit runtime_error(const _VSTD::string&); // Symbol uses versioned std::string
119 _LIBCPP_INLINE_VISIBILITY explicit runtime_error(const char* __s) : exception(__s) {}
127 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const string& __s) : logic_error(__s) {}
128 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const char* __s) : logic_error(__s) {}
131 domain_error(const domain_error&) _NOEXCEPT = default;
140 _LIBCPP_INLINE_VISIBILITY explicit invalid_argument(const string& __s) : logic_error(__s) {}
141 _LIBCPP_INLINE_VISIBILITY explicit invalid_argument(const char* __s) : logic_error(__s) {}
144 invalid_argument(const invalid_argument&) _NOEXCEPT = default;
153 _LIBCPP_INLINE_VISIBILITY explicit length_error(const string& __s) : logic_error(__s) {}
154 _LIBCPP_INLINE_VISIBILITY explicit length_error(const char* __s) : logic_error(__s) {}
156 length_error(const length_error&) _NOEXCEPT = default;
165 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const string& __s) : logic_error(__s) {}
166 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const char* __s) : logic_error(__s) {}
169 out_of_range(const out_of_range&) _NOEXCEPT = default;
178 _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {}
179 _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {}
182 range_error(const range_error&) _NOEXCEPT = default;
191 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const string& __s) : runtime_error(__s) {}
192 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const char* __s) : runtime_error(__s) {}
195 overflow_error(const overflow_error&) _NOEXCEPT = default;
204 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const string& __s) : runtime_error(__s) {}
205 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const char* __s) : runtime_error(__s) {}
208 underflow_error(const underflow_error&) _NOEXCEPT = default;
218 _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void __throw_runtime_error(const char*);
221 void __throw_logic_error(const char*__msg)
232 void __throw_domain_error(const char*__msg)
243 void __throw_invalid_argument(const char*__msg)
254 void __throw_length_error(const char*__msg)
265 void __throw_out_of_range(const char*__msg)
276 void __throw_range_error(const char*__msg)
287 void __throw_overflow_error(const char*__msg)
298 void __throw_underflow_error(const char*__msg)