HomeSort by relevance Sort by last modified time
    Searched defs:logic_error (Results 1 - 5 of 5) sorted by null

  /external/libcxx/src/
stdexcept.cpp 30 logic_error::logic_error(const string& msg) : __imp_(msg.c_str()) function in class:std::logic_error
34 logic_error::logic_error(const char* msg) : __imp_(msg) function in class:std::logic_error
38 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_)
42 logic_error&
43 logic_error::operator=(const logic_error& le) _NOEXCEP
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
stdexcept.cpp 30 logic_error::logic_error(const string& msg) : __imp_(msg.c_str()) function in class:std::logic_error
34 logic_error::logic_error(const char* msg) : __imp_(msg) function in class:std::logic_error
38 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_)
42 logic_error&
43 logic_error::operator=(const logic_error& le) _NOEXCEP
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
validation.hpp 37 // ************** runtime::logic_error ************** //
40 class logic_error class in namespace:boost::BOOST_RT_PARAM_NAMESPACE
48 explicit logic_error( cstring msg ) : m_msg( new dstring( msg.begin(), msg.size() ) ) {} function in class:boost::BOOST_RT_PARAM_NAMESPACE::logic_error
49 ~logic_error() throw() {}
65 throw BOOST_RT_PARAM_NAMESPACE::logic_error( msg.str() );
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h 32 class _STLP_CLASS_DECLSPEC logic_error : public __Named_exception { class in inherits:__Named_exception
34 logic_error(const string& __s) : __Named_exception(__s) {} function in class:logic_error
36 ~logic_error() _STLP_NOTHROW_INHERENTLY;
48 class _STLP_CLASS_DECLSPEC domain_error : public logic_error {
50 domain_error(const string& __arg) : logic_error(__arg) {}
56 class _STLP_CLASS_DECLSPEC invalid_argument : public logic_error {
58 invalid_argument(const string& __arg) : logic_error(__arg) {}
64 class _STLP_CLASS_DECLSPEC length_error : public logic_error {
66 length_error(const string& __arg) : logic_error(__arg) {}
72 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error {
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h 32 class _STLP_CLASS_DECLSPEC logic_error : public __Named_exception { class in inherits:__Named_exception
34 logic_error(const string& __s) : __Named_exception(__s) {} function in class:logic_error
36 ~logic_error() _STLP_NOTHROW_INHERENTLY;
48 class _STLP_CLASS_DECLSPEC domain_error : public logic_error {
50 domain_error(const string& __arg) : logic_error(__arg) {}
56 class _STLP_CLASS_DECLSPEC invalid_argument : public logic_error {
58 invalid_argument(const string& __arg) : logic_error(__arg) {}
64 class _STLP_CLASS_DECLSPEC length_error : public logic_error {
66 length_error(const string& __arg) : logic_error(__arg) {}
72 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error {
    [all...]

Completed in 102 milliseconds