/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
H A D | compatibility-c++0x.cc | 27 #define error_category error_categoryxx macro 34 #undef error_category 140 class error_category class 143 error_category() noexcept; 145 virtual ~error_category(); 147 error_category(const error_category&) = delete; 148 error_category& operator=(const error_category&) = delete; 166 operator<(const error_category& __other) const noexcept in operator <() 167 { return less<const error_category*>()(this, &__other); } in operator <() 170 operator==(const error_category& __other) const noexcept in operator ==() [all …]
|
H A D | system_error.cc | 60 struct generic_error_category final : public std::error_category 83 struct system_error_category final : public std::error_category 536 error_category::~error_category() = default; 540 const error_category& in _GLIBCXX_BEGIN_INLINE_ABI_NAMESPACE() 543 const error_category& 551 error_category::default_error_condition(int __i) const noexcept in default_error_condition() 555 error_category::equivalent(int __i, in equivalent() 560 error_category::equivalent(const error_code& __code, int __i) const noexcept in equivalent() 570 error_category::_M_message(int i) const in _M_message()
|
H A D | future.cc | 34 struct future_error_category final : public std::error_category 88 const error_category& future_category() noexcept in future_category()
|
H A D | cxx11-ios_failure.cc | 51 struct io_error_category final : std::error_category 92 const error_category&
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
H A D | compatibility-c++0x.cc | 27 #define error_category error_categoryxx macro 34 #undef error_category 136 class error_category class 139 error_category() noexcept; 141 virtual ~error_category(); 143 error_category(const error_category&) = delete; 144 error_category& operator=(const error_category&) = delete; 162 operator<(const error_category& __other) const noexcept in operator <() 163 { return less<const error_category*>()(this, &__other); } in operator <() 166 operator==(const error_category& __other) const noexcept in operator ==() [all …]
|
H A D | system_error.cc | 39 struct generic_error_category : public std::error_category 55 struct system_error_category : public std::error_category 344 error_category::~error_category() noexcept = default; 346 const error_category& 349 const error_category& 355 error_category::default_error_condition(int __i) const noexcept in default_error_condition() 359 error_category::equivalent(int __i, in equivalent() 364 error_category::equivalent(const error_code& __code, int __i) const noexcept in equivalent() 374 error_category::_M_message(int i) const in _M_message()
|
H A D | future.cc | 30 struct future_error_category : public std::error_category 78 const error_category& future_category() noexcept in future_category()
|
H A D | cxx11-ios_failure.cc | 47 struct io_error_category : std::error_category 83 const error_category&
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A 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; 36 bool operator<(const error_category& rhs) const noexcept; 39 const error_category& generic_category() noexcept; 40 const error_category& system_category() noexcept; [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/src/ |
H A D | system_error.cpp | 31 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()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
H A D | system_error | 89 class error_category 92 constexpr error_category() noexcept = default; 94 virtual ~error_category(); 96 error_category(const error_category&) = delete; 97 error_category& operator=(const error_category&) = delete; 136 operator==(const error_category& __other) const noexcept 141 operator<=>(const error_category& __rhs) const noexcept 145 operator!=(const error_category& __other) const noexcept 149 operator<(const error_category& __other) const noexcept 150 { return less<const error_category*>()(this, &__other); } [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
H A D | system_error | 104 class error_category 107 constexpr error_category() noexcept = default; 109 virtual ~error_category(); 111 error_category(const error_category&) = delete; 112 error_category& operator=(const error_category&) = delete; 155 /// An error_category only compares equal to itself. 158 operator==(const error_category& __other) const noexcept 165 operator<=>(const error_category& __rhs) const noexcept 169 operator<(const error_category& __other) const noexcept 170 { return less<const error_category*>()(this, &__other); } [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
H A D | Error.cpp | 25 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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cxxdump/ |
H A D | Error.cpp | 22 class cxxdump_error_category : public std::error_category { 41 const std::error_category &cxxdump_category() { in cxxdump_category()
|
H A D | Error.h | 19 const std::error_category &cxxdump_category();
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
H A D | CodeViewError.cpp | 20 class CodeViewErrorCategory : public std::error_category { 45 const std::error_category &llvm::codeview::CVErrorCategory() { in CVErrorCategory()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/ |
H A D | GenericError.cpp | 20 class PDBErrorCategory : public std::error_category { 46 const std::error_category &llvm::pdb::PDBErrCategory() { return *PDBCategory; } in PDBErrCategory()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/ |
H A D | DIAError.cpp | 11 class DIAErrorCategory : public std::error_category { 35 const std::error_category &llvm::pdb::DIAErrCategory() { return *DIACategory; } in DIAErrCategory()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/ |
H A D | MSFError.cpp | 20 class MSFErrorCategory : public std::error_category { 47 const std::error_category &llvm::msf::MSFErrCategory() { return *MSFCategory; } in MSFErrCategory()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
H A D | RawError.cpp | 12 class RawErrorCategory : public std::error_category { 51 const std::error_category &llvm::pdb::RawErrCategory() { return *RawCategory; } in RawErrCategory()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/DIA/ |
H A D | DIAError.h | 35 const std::error_category &DIAErrCategory();
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | CodeViewError.h | 36 const std::error_category &CVErrorCategory();
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/MSF/ |
H A D | MSFError.h | 37 const std::error_category &MSFErrCategory();
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/ |
H A D | GenericError.h | 35 const std::error_category &PDBErrCategory();
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | RawError.h | 43 const std::error_category &RawErrCategory();
|