/external/sdv/vsomeip/third_party/boost/filesystem/src/ |
D | exception.cpp | 25 BOOST_FILESYSTEM_DECL filesystem_error::filesystem_error(const std::string& what_arg, system::error… in filesystem_error() function in boost::filesystem::filesystem_error 38 BOOST_FILESYSTEM_DECL filesystem_error::filesystem_error(const std::string& what_arg, const path& p… in filesystem_error() function in boost::filesystem::filesystem_error 51 BOOST_FILESYSTEM_DECL filesystem_error::filesystem_error(const std::string& what_arg, const path& p… in filesystem_error() function in boost::filesystem::filesystem_error 64 BOOST_FILESYSTEM_DECL filesystem_error::filesystem_error(filesystem_error const& that) : in filesystem_error() function in boost::filesystem::filesystem_error 70 BOOST_FILESYSTEM_DECL filesystem_error& filesystem_error::operator= (filesystem_error const& that) in operator =() 77 BOOST_FILESYSTEM_DECL filesystem_error::~filesystem_error() BOOST_NOEXCEPT_OR_NOTHROW in ~filesystem_error() 81 BOOST_FILESYSTEM_DECL const char* filesystem_error::what() const BOOST_NOEXCEPT_OR_NOTHROW in what() 112 BOOST_FILESYSTEM_DECL const path& filesystem_error::get_empty_path() BOOST_NOEXCEPT in get_empty_path() 123 …BOOST_FILESYSTEM_THROW(filesystem_error(message, system::error_code(error_num, system::system_cate… in emit_error() 131 …BOOST_FILESYSTEM_THROW(filesystem_error(message, p, system::error_code(error_num, system::system_c… in emit_error() [all …]
|
/external/cronet/tot/third_party/libc++/src/test/std/input.output/filesystems/class.filesystem_error/ |
D | filesystem_error.members.pass.cpp | 41 auto CheckWhat = [what_contains](filesystem_error const& e) { in test_constructors() 52 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, ec)); in test_constructors() 53 filesystem_error e(what_arg, ec); in test_constructors() 60 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, p1, ec)); in test_constructors() 61 filesystem_error e(what_arg, p1, ec); in test_constructors() 69 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, p1, p2, ec)); in test_constructors() 70 filesystem_error e(what_arg, p1, p2, ec); in test_constructors() 82 auto CheckWhat = [what_contains](filesystem_error const& e) { in test_constructors() 93 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, ec)); in test_constructors() 94 filesystem_error e(what_arg, ec); in test_constructors() [all …]
|
/external/cronet/stable/third_party/libc++/src/test/std/input.output/filesystems/class.filesystem_error/ |
D | filesystem_error.members.pass.cpp | 41 auto CheckWhat = [what_contains](filesystem_error const& e) { in test_constructors() 52 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, ec)); in test_constructors() 53 filesystem_error e(what_arg, ec); in test_constructors() 60 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, p1, ec)); in test_constructors() 61 filesystem_error e(what_arg, p1, ec); in test_constructors() 69 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, p1, p2, ec)); in test_constructors() 70 filesystem_error e(what_arg, p1, p2, ec); in test_constructors() 82 auto CheckWhat = [what_contains](filesystem_error const& e) { in test_constructors() 93 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, ec)); in test_constructors() 94 filesystem_error e(what_arg, ec); in test_constructors() [all …]
|
/external/sdv/vsomeip/third_party/boost/filesystem/include/boost/filesystem/ |
D | exception.hpp | 48 class BOOST_SYMBOL_VISIBLE filesystem_error : class 54 BOOST_FILESYSTEM_DECL filesystem_error(const std::string& what_arg, system::error_code ec); 55 …BOOST_FILESYSTEM_DECL filesystem_error(const std::string& what_arg, const path& path1_arg, system:… 56 …BOOST_FILESYSTEM_DECL filesystem_error(const std::string& what_arg, const path& path1_arg, const p… 58 BOOST_FILESYSTEM_DECL filesystem_error(filesystem_error const& that); 59 BOOST_FILESYSTEM_DECL filesystem_error& operator= (filesystem_error const& that); 61 BOOST_FILESYSTEM_DECL ~filesystem_error() BOOST_NOEXCEPT_OR_NOTHROW;
|
/external/libcxx/test/std/input.output/filesystems/class.filesystem_error/ |
D | filesystem_error.members.pass.cpp | 38 auto CheckWhat = [what_contains](filesystem_error const& e) { in test_constructors() 49 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, ec)); in test_constructors() 50 filesystem_error e(what_arg, ec); in test_constructors() 57 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, p1, ec)); in test_constructors() 58 filesystem_error e(what_arg, p1, ec); in test_constructors() 66 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, p1, p2, ec)); in test_constructors() 67 filesystem_error e(what_arg, p1, p2, ec); in test_constructors() 80 const filesystem_error e("lala", ec); in test_signatures() 99 static_assert(std::is_base_of<std::system_error, fs::filesystem_error>::value, ""); in main()
|
/external/cronet/tot/third_party/libc++/src/include/__cxx03/__filesystem/ |
D | filesystem_error.h | 30 class _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY _LIBCPP_EXPORTED_FROM_ABI filesystem_error : public s… 32 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, error_code __ec) in filesystem_error() function 37 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, error_code __ec) in filesystem_error() function 42 …_LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, const path& __p2, e… in filesystem_error() function 51 _LIBCPP_HIDE_FROM_ABI filesystem_error(const filesystem_error&) = default; 52 ~filesystem_error() override; // key function 74 throw filesystem_error(std::forward<_Args>(__args)...); in __throw_filesystem_error()
|
/external/cronet/tot/third_party/libc++/src/include/__filesystem/ |
D | filesystem_error.h | 30 class _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY _LIBCPP_EXPORTED_FROM_ABI filesystem_error : public s… 32 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, error_code __ec) in filesystem_error() function 37 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, error_code __ec) in filesystem_error() function 42 …_LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, const path& __p2, e… in filesystem_error() function 51 _LIBCPP_HIDE_FROM_ABI filesystem_error(const filesystem_error&) = default; 52 ~filesystem_error() override; // key function 74 throw filesystem_error(std::forward<_Args>(__args)...); in __throw_filesystem_error()
|
/external/cronet/stable/third_party/libc++/src/include/__cxx03/__filesystem/ |
D | filesystem_error.h | 30 class _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY _LIBCPP_EXPORTED_FROM_ABI filesystem_error : public s… 32 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, error_code __ec) in filesystem_error() function 37 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, error_code __ec) in filesystem_error() function 42 …_LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, const path& __p2, e… in filesystem_error() function 51 _LIBCPP_HIDE_FROM_ABI filesystem_error(const filesystem_error&) = default; 52 ~filesystem_error() override; // key function 74 throw filesystem_error(std::forward<_Args>(__args)...); in __throw_filesystem_error()
|
/external/cronet/stable/third_party/libc++/src/include/__filesystem/ |
D | filesystem_error.h | 30 class _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY _LIBCPP_EXPORTED_FROM_ABI filesystem_error : public s… 32 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, error_code __ec) in filesystem_error() function 37 _LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, error_code __ec) in filesystem_error() function 42 …_LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, const path& __p2, e… in filesystem_error() function 51 _LIBCPP_HIDE_FROM_ABI filesystem_error(const filesystem_error&) = default; 52 ~filesystem_error() override; // key function 74 throw filesystem_error(std::forward<_Args>(__args)...); in __throw_filesystem_error()
|
/external/cronet/tot/third_party/libc++/src/src/filesystem/ |
D | filesystem_error.cpp | 18 filesystem_error::~filesystem_error() {} in ~filesystem_error() 20 void filesystem_error::__create_what(int __num_paths) { in __create_what()
|
/external/cronet/stable/third_party/libc++/src/src/filesystem/ |
D | filesystem_error.cpp | 18 filesystem_error::~filesystem_error() {} in ~filesystem_error() 20 void filesystem_error::__create_what(int __num_paths) { in __create_what()
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_empty/ |
D | is_empty.pass.cpp | 43 TEST_CHECK_THROW(filesystem_error, is_empty(p)); in TEST_CASE() 77 TEST_CHECK_THROW(filesystem_error, is_empty(dir2)); in TEST_CASE() 92 TEST_CHECK_THROW(filesystem_error, is_empty(dir)); in TEST_CASE() 106 TEST_CHECK_THROW(filesystem_error, is_empty(fifo)); in TEST_CASE()
|
/external/cronet/tot/third_party/libc++/src/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_empty/ |
D | is_empty.pass.cpp | 48 TEST_THROWS_TYPE(filesystem_error, is_empty(p)); in test_exist_not_found() 93 TEST_THROWS_TYPE(filesystem_error, is_empty(p)); in test_is_empty_fails() 117 TEST_THROWS_TYPE(filesystem_error, is_empty(dir)); in test_directory_access_denied() 132 TEST_THROWS_TYPE(filesystem_error, is_empty(fifo)); in test_fifo_fails()
|
/external/cronet/stable/third_party/libc++/src/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_empty/ |
D | is_empty.pass.cpp | 48 TEST_THROWS_TYPE(filesystem_error, is_empty(p)); in test_exist_not_found() 93 TEST_THROWS_TYPE(filesystem_error, is_empty(p)); in test_is_empty_fails() 117 TEST_THROWS_TYPE(filesystem_error, is_empty(dir)); in test_directory_access_denied() 132 TEST_THROWS_TYPE(filesystem_error, is_empty(fifo)); in test_fifo_fails()
|
/external/sdv/vsomeip/third_party/boost/filesystem/test/ |
D | copy_test.cpp | 276 BOOST_TEST_THROWS(fs::copy(root_dir / "non-existing", target_dir), fs::filesystem_error); in test_copy_errors() 280 BOOST_TEST_THROWS(fs::copy(root_dir / "f1", target_dir), fs::filesystem_error); in test_copy_errors() 281 BOOST_TEST_THROWS(fs::copy(root_dir / "f1", target_dir / "f1"), fs::filesystem_error); in test_copy_errors() 282 BOOST_TEST_THROWS(fs::copy(root_dir / "d1", target_dir / "f1"), fs::filesystem_error); in test_copy_errors() 284 BOOST_TEST_THROWS(fs::copy(target_dir, target_dir), fs::filesystem_error); in test_copy_errors() 285 BOOST_TEST_THROWS(fs::copy(target_dir / "f1", target_dir / "f1"), fs::filesystem_error); in test_copy_errors() 290 …ST_THROWS(fs::copy(root_dir, target_dir, fs::copy_options::create_symlinks), fs::filesystem_error); in test_copy_errors() 319 catch (fs::filesystem_error& e) in main()
|
/external/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/ |
D | file_size.pass.cpp | 106 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.file_size()); in TEST_CASE() 139 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.file_size()); in TEST_CASE() 162 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.file_size()); in TEST_CASE() 180 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.file_size()); in TEST_CASE() 206 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.file_size()); in TEST_CASE() 232 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.file_size()); in TEST_CASE()
|
D | last_write_time.pass.cpp | 111 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.last_write_time()); in TEST_CASE() 134 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.last_write_time()); in TEST_CASE() 153 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.last_write_time()); in TEST_CASE() 179 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.last_write_time()); in TEST_CASE() 205 TEST_CHECK_THROW_RESULT(filesystem_error, Checker, ent.last_write_time()); in TEST_CASE()
|
/external/cronet/stable/third_party/libc++/src/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/ |
D | file_size.pass.cpp | 114 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in not_regular_file() 150 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting() 173 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting() 194 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting() 220 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting() 246 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting()
|
D | last_write_time.pass.cpp | 118 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting() 141 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting() 163 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting() 189 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting() 215 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting()
|
/external/cronet/tot/third_party/libc++/src/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/ |
D | file_size.pass.cpp | 114 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in not_regular_file() 150 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting() 173 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting() 194 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting() 220 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting() 246 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.file_size()); in error_reporting()
|
D | last_write_time.pass.cpp | 118 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting() 141 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting() 163 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting() 189 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting() 215 TEST_VALIDATE_EXCEPTION(filesystem_error, Checker, ent.last_write_time()); in error_reporting()
|
/external/cronet/stable/third_party/libc++/src/test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/ |
D | equivalent.pass.cpp | 81 TEST_THROWS_TYPE(filesystem_error, equivalent(DNE, E)); in equivalent_reports_error_if_input_dne() 82 TEST_THROWS_TYPE(filesystem_error, equivalent(E, DNE)); in equivalent_reports_error_if_input_dne() 85 TEST_THROWS_TYPE(filesystem_error, equivalent(DNE, DNE)); in equivalent_reports_error_if_input_dne()
|
/external/cronet/stable/third_party/libc++/src/test/std/input.output/filesystems/fs.op.funcs/fs.op.canonical/ |
D | canonical.pass.cpp | 92 TEST_THROWS_TYPE(filesystem_error, canonical(static_env.DNE)); in test_dne_path() 105 } catch (filesystem_error const& err) { in test_exception_contains_paths() 114 } catch (filesystem_error const& err) { in test_exception_contains_paths()
|
/external/cronet/tot/third_party/libc++/src/test/std/input.output/filesystems/fs.op.funcs/fs.op.canonical/ |
D | canonical.pass.cpp | 92 TEST_THROWS_TYPE(filesystem_error, canonical(static_env.DNE)); in test_dne_path() 105 } catch (filesystem_error const& err) { in test_exception_contains_paths() 114 } catch (filesystem_error const& err) { in test_exception_contains_paths()
|
/external/cronet/tot/third_party/libc++/src/test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/ |
D | equivalent.pass.cpp | 81 TEST_THROWS_TYPE(filesystem_error, equivalent(DNE, E)); in equivalent_reports_error_if_input_dne() 82 TEST_THROWS_TYPE(filesystem_error, equivalent(E, DNE)); in equivalent_reports_error_if_input_dne() 85 TEST_THROWS_TYPE(filesystem_error, equivalent(DNE, DNE)); in equivalent_reports_error_if_input_dne()
|