Home
last modified time | relevance | path

Searched refs:m_error_code (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/boost/system/
Dsystem_error.hpp28 : 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/
Dexception_check_predicate.run-fail.cpp14 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/
Dpattern_except.hpp57 { 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/
Dregex.cpp63 , m_error_code(err) in regex_error()
70 , m_error_code(err) in regex_error()
/third_party/boost/boost/test/
Dexecution_monitor.hpp293 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/
Dtest_tools-test.cpp302 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/
Dexecution_monitor.ipp1420 : m_error_code( ec_ )