/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | config.h | 50 #define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libunwind: " msg, __VA_ARGS__) argument 51 #define _LIBUNWIND_ABORT(msg) __assert_rtn(__func__, __FILE__, __LINE__, msg) argument 66 …static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) __at… 67 static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) { in assert_rtn() argument 68 fprintf(stderr, "libunwind: %s %s:%d - %s\n", func, file, line, msg); in assert_rtn() 82 #define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libuwind: " msg, __VA_ARGS__) argument 83 #define _LIBUNWIND_ABORT(msg) assert_rtn(__func__, __FILE__, __LINE__, msg) argument 94 #define _LIBUNWIND_DEBUG_LOG(msg, ...) argument 95 #define _LIBUNWIND_TRACE_API(msg, ...) argument 97 #define _LIBUNWIND_TRACE_UNWINDING(msg, ...) argument [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/ |
D | validation.hpp | 48 explicit logic_error( cstring msg ) : m_msg( new dstring( msg.begin(), msg.size() ) ) {} in logic_error() argument 51 dstring const& msg() const { return *m_msg; } in msg() function in boost::BOOST_RT_PARAM_NAMESPACE::logic_error 63 report_logic_error( format_stream& msg ) in report_logic_error() argument 65 throw BOOST_RT_PARAM_NAMESPACE::logic_error( msg.str() ); in report_logic_error() 70 #define BOOST_RT_PARAM_REPORT_LOGIC_ERROR( msg ) \ argument 71 boost::BOOST_RT_PARAM_NAMESPACE::report_logic_error( format_stream().ref() << msg ) 73 #define BOOST_RT_PARAM_VALIDATE_LOGIC( b, msg ) \ argument 74 if( b ) {} else BOOST_RT_PARAM_REPORT_LOGIC_ERROR( msg )
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/length.error/ |
D | length_error.pass.cpp | 25 const char* msg = "length_error message"; in main() local 26 std::length_error e(msg); in main() 27 assert(std::strcmp(e.what(), msg) == 0); in main() 29 assert(std::strcmp(e2.what(), msg) == 0); in main() 31 assert(std::strcmp(e2.what(), msg) == 0); in main() 34 std::string msg("another length_error message"); in main() local 35 std::length_error e(msg); in main() 36 assert(e.what() == msg); in main() 38 assert(e2.what() == msg); in main() 40 assert(e2.what() == msg); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/underflow.error/ |
D | underflow_error.pass.cpp | 25 const char* msg = "underflow_error message"; in main() local 26 std::underflow_error e(msg); in main() 27 assert(std::strcmp(e.what(), msg) == 0); in main() 29 assert(std::strcmp(e2.what(), msg) == 0); in main() 31 assert(std::strcmp(e2.what(), msg) == 0); in main() 34 std::string msg("another underflow_error message"); in main() local 35 std::underflow_error e(msg); in main() 36 assert(e.what() == msg); in main() 38 assert(e2.what() == msg); in main() 40 assert(e2.what() == msg); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/overflow.error/ |
D | overflow_error.pass.cpp | 25 const char* msg = "overflow_error message"; in main() local 26 std::overflow_error e(msg); in main() 27 assert(std::strcmp(e.what(), msg) == 0); in main() 29 assert(std::strcmp(e2.what(), msg) == 0); in main() 31 assert(std::strcmp(e2.what(), msg) == 0); in main() 34 std::string msg("another overflow_error message"); in main() local 35 std::overflow_error e(msg); in main() 36 assert(e.what() == msg); in main() 38 assert(e2.what() == msg); in main() 40 assert(e2.what() == msg); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/range.error/ |
D | range_error.pass.cpp | 25 const char* msg = "range_error message"; in main() local 26 std::range_error e(msg); in main() 27 assert(std::strcmp(e.what(), msg) == 0); in main() 29 assert(std::strcmp(e2.what(), msg) == 0); in main() 31 assert(std::strcmp(e2.what(), msg) == 0); in main() 34 std::string msg("another range_error message"); in main() local 35 std::range_error e(msg); in main() 36 assert(e.what() == msg); in main() 38 assert(e2.what() == msg); in main() 40 assert(e2.what() == msg); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/logic.error/ |
D | logic_error.pass.cpp | 25 const char* msg = "logic_error message"; in main() local 26 std::logic_error e(msg); in main() 27 assert(std::strcmp(e.what(), msg) == 0); in main() 29 assert(std::strcmp(e2.what(), msg) == 0); in main() 31 assert(std::strcmp(e2.what(), msg) == 0); in main() 34 std::string msg("another logic_error message"); in main() local 35 std::logic_error e(msg); in main() 36 assert(e.what() == msg); in main() 38 assert(e2.what() == msg); in main() 40 assert(e2.what() == msg); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/domain.error/ |
D | domain_error.pass.cpp | 25 const char* msg = "domain_error message"; in main() local 26 std::domain_error e(msg); in main() 27 assert(std::strcmp(e.what(), msg) == 0); in main() 29 assert(std::strcmp(e2.what(), msg) == 0); in main() 31 assert(std::strcmp(e2.what(), msg) == 0); in main() 34 std::string msg("another domain_error message"); in main() local 35 std::domain_error e(msg); in main() 36 assert(e.what() == msg); in main() 38 assert(e2.what() == msg); in main() 40 assert(e2.what() == msg); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/invalid.argument/ |
D | invalid_argument.pass.cpp | 25 const char* msg = "invalid_argument message"; in main() local 26 std::invalid_argument e(msg); in main() 27 assert(std::strcmp(e.what(), msg) == 0); in main() 29 assert(std::strcmp(e2.what(), msg) == 0); in main() 31 assert(std::strcmp(e2.what(), msg) == 0); in main() 34 std::string msg("another invalid_argument message"); in main() local 35 std::invalid_argument e(msg); in main() 36 assert(e.what() == msg); in main() 38 assert(e2.what() == msg); in main() 40 assert(e2.what() == msg); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/out.of.range/ |
D | out_of_range.pass.cpp | 25 const char* msg = "out_of_range message"; in main() local 26 std::out_of_range e(msg); in main() 27 assert(std::strcmp(e.what(), msg) == 0); in main() 29 assert(std::strcmp(e2.what(), msg) == 0); in main() 31 assert(std::strcmp(e2.what(), msg) == 0); in main() 34 std::string msg("another out_of_range message"); in main() local 35 std::out_of_range e(msg); in main() 36 assert(e.what() == msg); in main() 38 assert(e2.what() == msg); in main() 40 assert(e2.what() == msg); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/runtime.error/ |
D | runtime_error.pass.cpp | 25 const char* msg = "runtime_error message"; in main() local 26 std::runtime_error e(msg); in main() 27 assert(std::strcmp(e.what(), msg) == 0); in main() 29 assert(std::strcmp(e2.what(), msg) == 0); in main() 31 assert(std::strcmp(e2.what(), msg) == 0); in main() 34 std::string msg("another runtime_error message"); in main() local 35 std::runtime_error e(msg); in main() 36 assert(e.what() == msg); in main() 38 assert(e2.what() == msg); in main() 40 assert(e2.what() == msg); in main()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | assert.hpp | 62 #define BOOST_ASSERT_MSG(expr, msg) ((void)0) argument 70 void assertion_failed_msg(char const * expr, char const * msg, 74 #define BOOST_ASSERT_MSG(expr, msg) ((expr) \ argument 76 : ::boost::assertion_failed_msg(#expr, msg, BOOST_CURRENT_FUNCTION, __FILE__, __LINE__)) 97 … inline void assertion_failed_msg(char const * expr, char const * msg, char const * function, in assertion_failed_msg() argument 103 << file << '(' << line << "): " << msg << std::endl; in assertion_failed_msg() 111 #define BOOST_ASSERT_MSG(expr, msg) ((expr) \ argument 113 : ::boost::assertion::detail::assertion_failed_msg(#expr, msg, \
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | stdexcept.cpp | 30 logic_error::logic_error(const string& msg) : __imp_(msg.c_str()) in logic_error() argument 34 logic_error::logic_error(const char* msg) : __imp_(msg) in logic_error() argument 63 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) in runtime_error() argument 67 runtime_error::runtime_error(const char* msg) : __imp_(msg) in runtime_error() argument
|
/ndk/sources/host-tools/make-3.81/config/ |
D | missing | 45 msg="missing on your system" 60 msg="probably too old" 141 WARNING: \`$1' is $msg. You should only need it if 150 WARNING: \`$1' is $msg. You should only need it if 159 WARNING: \`$1' is $msg. You should only need it if 178 WARNING: \`$1' is $msg. You should only need it if 189 WARNING: \`$1' is needed, but is $msg. 212 WARNING: \`$1' $msg. You should only need it if 242 WARNING: \`$1' is $msg. You should only need it if 265 WARNING: \`$1' is $msg. You should only need it if [all …]
|
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest-message_test.cc | 46 const Message msg; in TEST() local 47 EXPECT_EQ("", msg.GetString()); in TEST() 59 Message msg("Hello"); in TEST() local 60 EXPECT_EQ("Hello", msg.GetString()); in TEST() 141 Message msg; in TEST() local 142 msg << 1 << " lamb"; in TEST() 143 EXPECT_EQ("1 lamb", msg.GetString()); in TEST() 148 Message msg("Hello"); in TEST() local 150 ss << msg; in TEST()
|
D | gtest_throw_on_failure_ex_test.cc | 45 void Fail(const char* msg) { in Fail() argument 46 printf("FAILURE: %s\n", msg); in Fail()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _range_errors.c | 22 # define _STLP_THROW_MSG(ex,msg) throw std::ex(msg) argument 35 # define _STLP_THROW_MSG(ex,msg) throw ex(msg) argument 49 # define _STLP_THROW_MSG(ex,msg) puts(msg),_STLP_ABORT() argument
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/ |
D | validation.ipp | 41 report_input_error( argv_traverser const& tr, format_stream& msg ) 44 msg << BOOST_RT_PARAM_LITERAL( " at the end of input" ); 46 msg << BOOST_RT_PARAM_LITERAL( " in the following position: " ); 49 msg << tr.input().substr( 0, 5 ) << BOOST_RT_PARAM_LITERAL( "..." ); 51 msg << tr.input(); 54 throw BOOST_RT_PARAM_NAMESPACE::logic_error( msg.str() );
|
D | validation.hpp | 33 void report_input_error( argv_traverser const& tr, format_stream& msg ); 37 #define BOOST_RT_CLA_VALIDATE_INPUT( b, tr, msg ) \ argument 38 …else ::boost::BOOST_RT_PARAM_NAMESPACE::cla::report_input_error( tr, format_stream().ref() << msg )
|
/ndk/tests/device/test-stlport/unit/ |
D | exception_test.cpp | 165 std::string msg(512, 'a'); in exception_emission() local 167 throw std::runtime_error(msg); in exception_emission() 170 CPPUNIT_ASSERT(msg == e.what() ); in exception_emission() 173 CPPUNIT_ASSERT(msg == clone.what() ); in exception_emission() 180 throw std::runtime_error(msg); in exception_emission() 183 CPPUNIT_ASSERT(msg == e.what() ); in exception_emission() 186 CPPUNIT_ASSERT(msg == clone.what() ); in exception_emission()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | exception_test.cpp | 165 std::string msg(512, 'a'); in exception_emission() local 167 throw std::runtime_error(msg); in exception_emission() 170 CPPUNIT_ASSERT(msg == e.what() ); in exception_emission() 173 CPPUNIT_ASSERT(msg == clone.what() ); in exception_emission() 180 throw std::runtime_error(msg); in exception_emission() 183 CPPUNIT_ASSERT(msg == e.what() ); in exception_emission() 186 CPPUNIT_ASSERT(msg == clone.what() ); in exception_emission()
|
/ndk/sources/host-tools/make-3.81/ |
D | remote-cstms.c | 144 char waybill[MAX_DATA_SIZE], msg[128]; in start_remote_job() local 193 sizeof(msg), (Rpc_Opaque) msg, in start_remote_job() 207 else if (msg[0] != 'O' || msg[1] != 'k' || msg[2] != '\0') in start_remote_job() 213 msg); in start_remote_job()
|
/ndk/tests/device/test-cpufeatures/jni/ |
D | test_android_setCpu_2.c | 6 static void panic(const char* msg) { in panic() argument 7 fprintf(stderr, "ERROR: %s\n", msg); in panic()
|
D | test_android_setCpu_1.c | 6 static void panic(const char* msg) { in panic() argument 7 fprintf(stderr, "ERROR: %s\n", msg); in panic()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
D | assert.hpp | 334 # define BOOST_MPL_ASSERT_MSG_IMPL( counter, c, msg, types_ ) \ argument 335 struct msg; \ 336 typedef struct BOOST_PP_CAT(msg,counter) : boost::mpl::assert_ \ 339 static boost::mpl::failed ************ (msg::************ assert_arg()) types_ \ 350 # define BOOST_MPL_ASSERT_MSG_IMPL( counter, c, msg, types_ ) \ 351 struct msg; \ 352 typedef struct BOOST_PP_CAT(msg,counter) : boost::mpl::assert_ \ 354 static boost::mpl::failed ************ (msg::************ assert_arg()) types_ \ 366 #define BOOST_MPL_ASSERT_MSG( c, msg, types_ ) \ argument 367 BOOST_MPL_ASSERT_MSG_IMPL( BOOST_MPL_AUX_PP_COUNTER(), c, msg, types_ ) \
|