Lines Matching refs:msg
49 explicit __libcpp_nmstr(const char* msg);
56 __libcpp_nmstr::__libcpp_nmstr(const char* msg) in __libcpp_nmstr() argument
58 std::size_t len = strlen(msg); in __libcpp_nmstr()
64 std::memcpy(const_cast<char*>(c_str()), msg, len + 1); in __libcpp_nmstr()
99 logic_error::logic_error(const string& msg) in logic_error() argument
102 ::new(&s) __libcpp_nmstr(msg.c_str()); in logic_error()
105 logic_error::logic_error(const char* msg) in logic_error() argument
108 ::new(&s) __libcpp_nmstr(msg); in logic_error()
143 runtime_error::runtime_error(const string& msg) in runtime_error() argument
146 ::new(&s) __libcpp_nmstr(msg.c_str()); in runtime_error()
149 runtime_error::runtime_error(const char* msg) in runtime_error() argument
152 ::new(&s) __libcpp_nmstr(msg); in runtime_error()