Home
last modified time | relevance | path

Searched refs:error_type (Results 1 – 12 of 12) sorted by relevance

/llvm-project/compiler-rt/lib/orc/
H A Derror.h191 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 Dsanitizer_symbolizer_report.cpp58 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 Dsanitizer_common.h400 // 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 DError.h489 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 Dregex.cpp15 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 Dinterface.h101 enum scudo_error_type error_type; member
/llvm-project/libcxx/include/__expected/
H A Dexpected.h466 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 Dregex.inc14 using std::regex_constants::error_type;
/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h1539 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 DCxx2cIssues.csv17 "`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 Dregex65 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 DStdSymbolMap.inc3923 SYMBOL(error_type, std::regex_constants::, <regex>)