Searched refs:m_error_code (Results 1 – 7 of 7) sorted by relevance
/third_party/boost/boost/system/ |
D | system_error.hpp | 28 : std::runtime_error(""), m_error_code(ec) {} in system_error() 31 : std::runtime_error(what_arg), m_error_code(ec) {} in system_error() 34 : std::runtime_error(what_arg), m_error_code(ec) {} in system_error() 37 : std::runtime_error(""), m_error_code(ev,ecat) {} in system_error() 41 : std::runtime_error(what_arg), m_error_code(ev,ecat) {} in system_error() 45 : std::runtime_error(what_arg), m_error_code(ev,ecat) {} in system_error() 49 error_code code() const BOOST_NOEXCEPT { return m_error_code; } in code() 53 error_code m_error_code; member in boost::system::system_error 70 m_what += m_error_code.message(); in what()
|
/third_party/boost/libs/test/doc/examples/ |
D | exception_check_predicate.run-fail.cpp | 14 explicit my_exception( int ec = 0 ) : m_error_code( ec ) in my_exception() 17 int m_error_code; member 20 bool is_critical( my_exception const& ex ) { return ex.m_error_code < 0; } in is_critical()
|
/third_party/boost/boost/regex/ |
D | pattern_except.hpp | 57 { return m_error_code; } in code() 62 regex_constants::error_type m_error_code; member in boost::regex_error
|
/third_party/boost/libs/regex/src/ |
D | regex.cpp | 63 , m_error_code(err) in regex_error() 70 , m_error_code(err) in regex_error()
|
/third_party/boost/boost/test/ |
D | execution_monitor.hpp | 293 error_code code() const { return m_error_code; } in code() 302 error_code m_error_code; member in boost::execution_exception
|
/third_party/boost/libs/test/test/writing-test-ts/ |
D | test_tools-test.cpp | 302 explicit my_exception( int ec = 0 ) : m_error_code( ec ) {} in my_exception() 304 int m_error_code; member 307 bool is_critical( my_exception const& ex ) { return ex.m_error_code < 0; } in is_critical()
|
/third_party/boost/boost/test/impl/ |
D | execution_monitor.ipp | 1420 : m_error_code( ec_ )
|