Home
last modified time | relevance | path

Searched refs:error_category (Results 1 – 25 of 142) sorted by relevance

123456

/external/llvm-project/libcxx/include/
Dsystem_error19 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;
36 bool operator<(const error_category& rhs) const noexcept;
39 const error_category& generic_category() noexcept;
40 const error_category& system_category() noexcept;
[all …]
/external/libcxx/include/
Dsystem_error20 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/llvm-project/libcxx/src/
Dsystem_error.cpp31 error_category::error_category() _NOEXCEPT in error_category() function in error_category
36 error_category::~error_category() _NOEXCEPT in ~error_category()
41 error_category::default_error_condition(int ev) const _NOEXCEPT in default_error_condition()
47 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT in equivalent()
53 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT in equivalent()
164 const error_category&
206 const error_category&
261 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error()
267 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error()
273 system_error::system_error(int ev, const error_category& ecat) in system_error()
/external/libcxx/src/
Dsystem_error.cpp32 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/parameter-framework/asio-1.10.6/include/asio/
Derror.hpp192 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
Derror_code.hpp24 typedef std::error_category error_category; typedef
28 extern ASIO_DECL const error_category& system_category();
/external/llvm-project/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/
Deq.pass.cpp22 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()
Dneq.pass.cpp22 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()
Dlt.pass.cpp22 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/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/
Deq.pass.cpp21 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()
Dneq.pass.cpp21 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()
Dlt.pass.cpp21 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/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DError.cpp24 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/
DError.cpp25 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/llvm-project/llvm/lib/Object/
DError.cpp25 class _object_error_category : public std::error_category {
76 static ManagedStatic<_object_error_category> error_category; variable
78 const std::error_category &object::object_category() { in object_category()
79 return *error_category; in object_category()
/external/parameter-framework/asio-1.10.6/include/asio/impl/
Derror.ipp27 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/llvm-project/lld/lib/Core/
DError.cpp19 class _YamlReaderErrorCategory : public std::error_category {
38 const std::error_category &lld::YamlReaderCategory() { in YamlReaderCategory()
48 class dynamic_error_category : public std::error_category {
/external/llvm-project/llvm/tools/llvm-cxxdump/
DError.cpp22 class cxxdump_error_category : public std::error_category {
41 const std::error_category &cxxdump_category() { in cxxdump_category()
/external/llvm/tools/llvm-cxxdump/
DError.cpp23 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/
Dgeneric_category.pass.cpp33 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/llvm-project/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/
Dgeneric_category.pass.cpp30 const std::error_category& e_cat1 = std::generic_category(); in test_message_for_bad_value()
39 const std::error_category& e_cat1 = std::generic_category(); in main()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DCodeViewError.cpp20 class CodeViewErrorCategory : public std::error_category {
45 const std::error_category &llvm::codeview::CVErrorCategory() { in CVErrorCategory()
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DCodeViewError.cpp20 class CodeViewErrorCategory : public std::error_category {
45 const std::error_category &llvm::codeview::CVErrorCategory() { in CVErrorCategory()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DGenericError.cpp20 class PDBErrorCategory : public std::error_category {
46 const std::error_category &llvm::pdb::PDBErrCategory() { return *PDBCategory; } in PDBErrCategory()
/external/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
DDIAError.cpp11 class DIAErrorCategory : public std::error_category {
35 const std::error_category &llvm::pdb::DIAErrCategory() { return *DIACategory; } in DIAErrCategory()

123456