HomeSort by relevance Sort by last modified time
    Searched refs:what_arg (Results 1 - 7 of 7) sorted by null

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
ctor_error_code_string.pass.cpp 14 // system_error(error_code ec, const string& what_arg);
24 std::string what_arg("test message");
25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg); local
28 assert(what_message.find(what_arg) != std::string::npos);
ctor_error_code_const_char_pointer.pass.cpp 14 // system_error(error_code ec, const char* what_arg);
24 std::string what_arg("test message");
25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg.c_str());
28 assert(what_message.find(what_arg) != std::string::npos);
ctor_int_error_category_const_char_pointer.pass.cpp 14 // system_error(int ev, const error_category& ecat, const char* what_arg);
24 std::string what_arg("test message");
26 std::generic_category(), what_arg.c_str());
29 assert(what_message.find(what_arg) != std::string::npos);
ctor_int_error_category_string.pass.cpp 14 // system_error(int ev, const error_category& ecat, const string& what_arg);
24 std::string what_arg("test message");
26 std::generic_category(), what_arg); local
29 assert(what_message.find(what_arg) != std::string::npos);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
system_error.cpp 142 system_error::__init(const error_code& ec, string what_arg)
146 if (!what_arg.empty())
147 what_arg += ": ";
148 what_arg += ec.message();
150 return _VSTD::move(what_arg);
153 system_error::system_error(error_code ec, const string& what_arg)
154 : runtime_error(__init(ec, what_arg)),
159 system_error::system_error(error_code ec, const char* what_arg)
160 : runtime_error(__init(ec, what_arg)),
171 system_error::system_error(int ev, const error_category& ecat, const string& what_arg)
197 throw system_error(error_code(ev, system_category()), what_arg); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_failure/
ctor_char_pointer_error_code.pass.cpp 23 std::string what_arg("io test message");
24 std::ios_base::failure se(what_arg.c_str(), make_error_code(std::errc::is_a_directory));
27 assert(what_message.find(what_arg) != std::string::npos);
31 std::string what_arg("io test message");
32 std::ios_base::failure se(what_arg.c_str());
35 assert(what_message.find(what_arg) != std::string::npos);
ctor_string_error_code.pass.cpp 23 std::string what_arg("io test message");
24 std::ios_base::failure se(what_arg, make_error_code(std::errc::is_a_directory));
27 assert(what_message.find(what_arg) != std::string::npos);
31 std::string what_arg("io test message");
32 std::ios_base::failure se(what_arg);
35 assert(what_message.find(what_arg) != std::string::npos);

Completed in 345 milliseconds