/external/cronet/buildtools/third_party/libc++/trunk/include/__system_error/ |
D | error_category.h | 28 class _LIBCPP_TYPE_VIS error_category { 30 virtual ~error_category() _NOEXCEPT; 33 error_category() noexcept; 35 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 error_category() _NOEXCEPT = default; 37 error_category(const error_category&) = delete; 38 error_category& operator=(const error_category&) = delete; 46 …_LIBCPP_HIDE_FROM_ABI bool operator==(const error_category& __rhs) const _NOEXCEPT { return this =… 50 _LIBCPP_HIDE_FROM_ABI strong_ordering operator<=>(const error_category& __rhs) const noexcept { 56 …_LIBCPP_HIDE_FROM_ABI bool operator!=(const error_category& __rhs) const _NOEXCEPT { return !(*thi… 58 …_LIBCPP_HIDE_FROM_ABI bool operator<(const error_category& __rhs) const _NOEXCEPT { return this < … [all …]
|
D | system_error.h | 32 system_error(int __ev, const error_category& __ecat, const string& __what_arg); 33 system_error(int __ev, const error_category& __ecat, const char* __what_arg); 34 system_error(int __ev, const error_category& __ecat);
|
D | error_condition.h | 51 const error_category* __cat_; 56 _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT 67 _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT { 87 _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
|
D | error_code.h | 45 const error_category* __cat_; 50 …_LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val)… in error_code() 59 _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT { in assign() 79 _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; } in category()
|
/external/libcxx/include/ |
D | system_error | 20 class error_category 23 virtual ~error_category() noexcept; 25 constexpr error_category(); 26 error_category(const error_category&) = delete; 27 error_category& operator=(const error_category&) = delete; 35 bool operator==(const error_category& rhs) const noexcept; 36 bool operator!=(const error_category& rhs) const noexcept; 37 bool operator<(const error_category& rhs) const noexcept; 40 const error_category& generic_category() noexcept; 41 const error_category& system_category() noexcept; [all …]
|
/external/cronet/buildtools/third_party/libc++/trunk/include/ |
D | system_error | 19 class error_category 22 virtual ~error_category() noexcept; 24 constexpr error_category(); 25 error_category(const error_category&) = delete; 26 error_category& operator=(const error_category&) = delete; 34 bool operator==(const error_category& rhs) const noexcept; 35 bool operator!=(const error_category& rhs) const noexcept; // removed in C++20 36 bool operator<(const error_category& rhs) const noexcept; // removed in C++20 37 strong_ordering operator<=>(const error_category& rhs) const noexcept; // C++20 40 const error_category& generic_category() noexcept; [all …]
|
/external/cronet/buildtools/third_party/libc++/trunk/src/ |
D | system_error.cpp | 34 error_category::error_category() noexcept in error_category() function in error_category 39 error_category::~error_category() noexcept in ~error_category() 44 error_category::default_error_condition(int ev) const noexcept in default_error_condition() 50 error_category::equivalent(int code, const error_condition& condition) const noexcept in equivalent() 56 error_category::equivalent(const error_code& code, int condition) const noexcept in equivalent() 167 const error_category& 209 const error_category& 264 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() 270 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() 276 system_error::system_error(int ev, const error_category& ecat) in system_error()
|
/external/libcxx/src/ |
D | system_error.cpp | 32 error_category::error_category() _NOEXCEPT in error_category() function in error_category 37 error_category::~error_category() _NOEXCEPT in ~error_category() 42 error_category::default_error_condition(int ev) const _NOEXCEPT in default_error_condition() 48 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT in equivalent() 54 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT in equivalent() 165 const error_category& 207 const error_category& 262 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() 268 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() 274 system_error::system_error(int ev, const error_category& ecat) in system_error()
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/ |
D | cmp.pass.cpp | 23 AssertOrderAreNoexcept<std::error_category>(); in main() 24 AssertOrderReturn<std::strong_ordering, std::error_category>(); in main() 26 const std::error_category& e_cat1 = std::generic_category(); in main() 27 const std::error_category& e_cat2 = std::generic_category(); in main() 28 const std::error_category& e_cat3 = std::system_category(); in main()
|
D | eq.pass.cpp | 22 const std::error_category& e_cat1 = std::generic_category(); in main() 23 const std::error_category& e_cat2 = std::generic_category(); in main() 24 const std::error_category& e_cat3 = std::system_category(); in main()
|
D | neq.pass.cpp | 22 const std::error_category& e_cat1 = std::generic_category(); in main() 23 const std::error_category& e_cat2 = std::generic_category(); in main() 24 const std::error_category& e_cat3 = std::system_category(); in main()
|
D | lt.pass.cpp | 22 const std::error_category& e_cat1 = std::generic_category(); in main() 23 const std::error_category& e_cat2 = std::generic_category(); in main() 24 const std::error_category& e_cat3 = std::system_category(); in main()
|
/external/parameter-framework/asio-1.10.6/include/asio/ |
D | error.hpp | 192 inline const asio::error_category& get_system_category() in get_system_category() 199 const asio::error_category& get_netdb_category(); 202 const asio::error_category& get_addrinfo_category(); 206 const asio::error_category& get_misc_category(); 208 static const asio::error_category& system_category 210 static const asio::error_category& netdb_category 212 static const asio::error_category& addrinfo_category 214 static const asio::error_category& misc_category
|
D | error_code.hpp | 24 typedef std::error_category error_category; typedef 28 extern ASIO_DECL const error_category& system_category();
|
/external/parameter-framework/asio-1.10.6/include/asio/impl/ |
D | error.ipp | 27 class netdb_category : public asio::error_category 51 const asio::error_category& get_netdb_category() 59 class addrinfo_category : public asio::error_category 79 const asio::error_category& get_addrinfo_category() 88 class misc_category : public asio::error_category 112 const asio::error_category& get_misc_category()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | Error.cpp | 24 class _object_error_category : public std::error_category { 74 static ManagedStatic<_object_error_category> error_category; variable 76 const std::error_category &object::object_category() { in object_category() 77 return *error_category; in object_category()
|
/external/llvm/lib/Object/ |
D | Error.cpp | 25 class _object_error_category : public std::error_category { 72 static ManagedStatic<_object_error_category> error_category; variable 74 const std::error_category &object::object_category() { in object_category() 75 return *error_category; in object_category()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/ |
D | neq.pass.cpp | 21 const std::error_category& e_cat1 = std::generic_category(); in main() 22 const std::error_category& e_cat2 = std::generic_category(); in main() 23 const std::error_category& e_cat3 = std::system_category(); in main()
|
D | eq.pass.cpp | 21 const std::error_category& e_cat1 = std::generic_category(); in main() 22 const std::error_category& e_cat2 = std::generic_category(); in main() 23 const std::error_category& e_cat3 = std::system_category(); in main()
|
D | lt.pass.cpp | 21 const std::error_category& e_cat1 = std::generic_category(); in main() 22 const std::error_category& e_cat2 = std::generic_category(); in main() 23 const std::error_category& e_cat3 = std::system_category(); in main()
|
/external/llvm/tools/llvm-cxxdump/ |
D | Error.cpp | 23 class cxxdump_error_category : public std::error_category { 42 const std::error_category &cxxdump_category() { in cxxdump_category()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/ |
D | generic_category.pass.cpp | 33 const std::error_category& e_cat1 = std::generic_category(); in test_message_for_bad_value() 41 const std::error_category& e_cat1 = std::generic_category(); in main()
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/ |
D | generic_category.pass.cpp | 27 const std::error_category& e_cat1 = std::generic_category(); in test_message_for_bad_value() 40 const std::error_category& e_cat1 = std::generic_category(); in main()
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.derived/ |
D | message.pass.cpp | 25 const std::error_category& e_cat1 = std::generic_category(); in main() 26 const std::error_category& e_cat2 = std::system_category(); in main()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | CodeViewError.cpp | 20 class CodeViewErrorCategory : public std::error_category { 45 const std::error_category &llvm::codeview::CVErrorCategory() { in CVErrorCategory()
|