Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DError.h160 friend class ErrorList; variable
363 class ErrorList final : public ErrorInfo<ErrorList> {
387 ErrorList(std::unique_ptr<ErrorInfoBase> Payload1, in ErrorList() function
389 assert(!Payload1->isA<ErrorList>() && !Payload2->isA<ErrorList>() && in ErrorList()
400 if (E1.isA<ErrorList>()) { in join()
401 auto &E1List = static_cast<ErrorList &>(*E1.getPtr()); in join()
402 if (E2.isA<ErrorList>()) { in join()
404 auto &E2List = static_cast<ErrorList &>(*E2Payload); in join()
412 if (E2.isA<ErrorList>()) { in join()
413 auto &E2List = static_cast<ErrorList &>(*E2.getPtr()); in join()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DError.cpp57 char ErrorList::ID = 0;
74 std::error_code ErrorList::convertToErrorCode() const { in convertToErrorCode()
/openbsd-src/gnu/llvm/llvm/docs/
H A DProgrammersManual.rst972 The ``joinErrors`` routine builds a special error type called ``ErrorList``,
977 errors and return the resulting ``ErrorList``.