Home
last modified time | relevance | path

Searched refs:ErrorList (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DError.h159 friend class ErrorList; variable
362 class ErrorList final : public ErrorInfo<ErrorList> {
386 ErrorList(std::unique_ptr<ErrorInfoBase> Payload1, in ErrorList() function
388 assert(!Payload1->isA<ErrorList>() && !Payload2->isA<ErrorList>() && in ErrorList()
399 if (E1.isA<ErrorList>()) { in join()
401 if (E2.isA<ErrorList>()) { in join()
411 if (E2.isA<ErrorList>()) { in join()
416 return Error(std::unique_ptr<ErrorList>( in join()
949 if (Payload->isA<ErrorList>()) { in handleErrors()
950 ErrorList &List = static_cast<ErrorList &>(*Payload); in handleErrors()
[all …]
/llvm-project-15.0.7/llvm/lib/Support/
H A DError.cpp57 char ErrorList::ID = 0;
74 std::error_code ErrorList::convertToErrorCode() const { in convertToErrorCode()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DParallelTest.cpp90 EXPECT_TRUE(e.isA<ErrorList>()); in TEST()
/llvm-project-15.0.7/llvm/docs/
H A DProgrammersManual.rst972 The ``joinErrors`` routine builds a special error type called ``ErrorList``,
977 errors and return the resulting ``ErrorList``.