/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | strerror.c | 43 char const *msg = NULL; in rpl_strerror() local 49 msg = "Text file busy"; in rpl_strerror() 56 msg = "Operation now in progress"; in rpl_strerror() 59 msg = "Operation already in progress"; in rpl_strerror() 62 msg = "Socket operation on non-socket"; in rpl_strerror() 65 msg = "Destination address required"; in rpl_strerror() 68 msg = "Message too long"; in rpl_strerror() 71 msg = "Protocol wrong type for socket"; in rpl_strerror() 74 msg = "Protocol not available"; in rpl_strerror() 77 msg = "Protocol not supported"; in rpl_strerror() [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/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/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/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/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/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/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/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/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/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/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/host-tools/sed-4.2.1/build-aux/ |
D | missing | 45 msg="missing on your system" 60 msg="probably too old" 152 WARNING: \`$1' is $msg. You should only need it if 161 WARNING: \`$1' is $msg. You should only need it if 170 WARNING: \`$1' is $msg. You should only need it if 189 WARNING: \`$1' is $msg. You should only need it if 200 WARNING: \`$1' is needed, but is $msg. 223 WARNING: \`$1' $msg. You should only need it if 253 WARNING: \`$1' is $msg. You should only need it if 276 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/llvm-libc++/libcxx/src/ |
D | stdexcept.cpp | 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() [all …]
|
/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()
|
/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_ ) \
|