/llvm-project/compiler-rt/lib/orc/ |
H A D | error.h | 191 using error_type = std::unique_ptr<ErrorInfoBase>; variable 204 new (getErrorStorage()) error_type(Err.takePayload()); in Expected() 248 getErrorStorage()->~error_type(); in ~Expected() 258 /// Returns true if this Expected value holds an Error of type error_type. 320 new (getErrorStorage()) error_type(std::move(*Other.getErrorStorage())); in moveConstruct() 351 error_type *getErrorStorage() { in getErrorStorage() 353 return reinterpret_cast<error_type *>(&ErrorStorage); in getErrorStorage() 356 const error_type *getErrorStorage() const { in getErrorStorage() 358 return reinterpret_cast<const error_type *>(&ErrorStorage); in getErrorStorage() 371 std::aligned_union_t<1, error_type> ErrorStorag [all...] |
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_symbolizer_report.cpp | 58 void ReportErrorSummary(const char *error_type, const AddressInfo &info, in ReportErrorSummary() argument 62 buff.AppendF("%s ", error_type); in ReportErrorSummary() 100 void ReportErrorSummary(const char *error_type, const StackTrace *stack, in ReportErrorSummary() argument 113 ReportErrorSummary(error_type, summary_frame->info, alt_tool_name); in ReportErrorSummary() 125 ReportErrorSummary(error_type, frame->info, alt_tool_name); in ReportErrorSummary() 131 ReportErrorSummary(error_type); in ReportErrorSummary()
|
H A D | sanitizer_common.h | 400 // error_type file:line[:column][ function] 401 void ReportErrorSummary(const char *error_type, const AddressInfo &info, 404 void ReportErrorSummary(const char *error_type, const StackTrace *trace,
|
/llvm-project/llvm/include/llvm/Support/ |
H A D | Error.h | 489 using error_type = std::unique_ptr<ErrorInfoBase>; variable 511 new (getErrorStorage()) error_type(Err.takePayload()); in Expected() 566 getErrorStorage()->~error_type(); in ~Expected() 660 new (getErrorStorage()) error_type(std::move(*Other.getErrorStorage())); in moveConstruct() 691 error_type *getErrorStorage() { in getErrorStorage() 693 return reinterpret_cast<error_type *>(&ErrorStorage); in getErrorStorage() 696 const error_type *getErrorStorage() const { in getErrorStorage() 698 return reinterpret_cast<const error_type *>(&ErrorStorage); in getErrorStorage() 731 AlignedCharArrayUnion<error_type> ErrorStorage;
|
/llvm-project/libcxx/src/ |
H A D | regex.cpp | 15 static const char* make_error_type_string(regex_constants::error_type ecode) { in make_error_type_string() 60 regex_error::regex_error(regex_constants::error_type ecode) in regex_error()
|
/llvm-project/compiler-rt/lib/scudo/standalone/include/scudo/ |
H A D | interface.h | 101 enum scudo_error_type error_type; member
|
/llvm-project/libcxx/include/__expected/ |
H A D | expected.h | 466 using error_type = _Err; 475 using rebind = expected<_Up, error_type>; 828 static_assert(is_copy_constructible_v<_Err>, "error_type has to be copy constructible"); 836 static_assert(is_copy_constructible_v<_Err>, "error_type has to be copy constructible"); 845 "error_type has to be both copy constructible and constructible from decltype(std::move(error()))"); 854 "error_type has to be both copy constructible and constructible from decltype(std::move(error()))"); 901 static_assert(is_copy_constructible_v<_Err>, "error_type has to be copy constructible"); 902 static_assert(is_convertible_v<_Up, _Err>, "argument has to be convertible to error_type"); 910 static_assert(is_move_constructible_v<_Err>, "error_type has to be move constructible"); 911 static_assert(is_convertible_v<_Up, _Err>, "argument has to be convertible to error_type"); [all...] |
/llvm-project/libcxx/modules/std/ |
H A D | regex.inc | 14 using std::regex_constants::error_type;
|
/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | combined.h | 1539 R->error_type = in getInlineErrorInfo() 1620 R->error_type = USE_AFTER_FREE; in getRingBufferErrorInfo() 1622 R->error_type = BUFFER_UNDERFLOW; 1624 R->error_type = BUFFER_OVERFLOW; in getStats()
|
/llvm-project/libcxx/docs/Status/ |
H A D | Cxx2cIssues.csv | 17 "`LWG3938 <https://wg21.link/LWG3938>`__","Cannot use ``std::expected`` monadic ops with move-only ``error_type``","2023-06 (Varna)","|Complete|","18",""
|
/llvm-project/libcxx/include/ |
H A D | regex | 65 enum error_type 88 explicit regex_error(regex_constants::error_type ecode); 89 regex_constants::error_type code() const; 956 enum error_type { 979 regex_constants::error_type __code_; 982 explicit regex_error(regex_constants::error_type __ecode); 985 _LIBCPP_HIDE_FROM_ABI regex_constants::error_type code() const { return __code_; } 988 template <regex_constants::error_type _Ev>
|
/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 3923 SYMBOL(error_type, std::regex_constants::, <regex>)
|