Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DError.h29 class ErrorList; variable
138 friend class ErrorList; variable
307 class ErrorList final : public ErrorInfo<ErrorList> {
332 ErrorList(std::unique_ptr<ErrorInfoBase> Payload1, in ErrorList() function
334 assert(!Payload1->isA<ErrorList>() && !Payload2->isA<ErrorList>() && in ErrorList()
345 if (E1.isA<ErrorList>()) { in join()
346 auto &E1List = static_cast<ErrorList &>(*E1.getPtr()); in join()
347 if (E2.isA<ErrorList>()) { in join()
349 auto &E2List = static_cast<ErrorList &>(*E2Payload); in join()
357 if (E2.isA<ErrorList>()) { in join()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DError.h155 friend class ErrorList; variable
328 class ErrorList final : public ErrorInfo<ErrorList> {
352 ErrorList(std::unique_ptr<ErrorInfoBase> Payload1, in ErrorList() function
354 assert(!Payload1->isA<ErrorList>() && !Payload2->isA<ErrorList>() && in ErrorList()
365 if (E1.isA<ErrorList>()) { in join()
366 auto &E1List = static_cast<ErrorList &>(*E1.getPtr()); in join()
367 if (E2.isA<ErrorList>()) { in join()
369 auto &E2List = static_cast<ErrorList &>(*E2Payload); in join()
377 if (E2.isA<ErrorList>()) { in join()
378 auto &E2List = static_cast<ErrorList &>(*E2.getPtr()); in join()
[all …]
/external/llvm-project/llvm/include/llvm/Support/
DError.h160 friend class ErrorList; variable
364 class ErrorList final : public ErrorInfo<ErrorList> {
388 ErrorList(std::unique_ptr<ErrorInfoBase> Payload1, in ErrorList() function
390 assert(!Payload1->isA<ErrorList>() && !Payload2->isA<ErrorList>() && in ErrorList()
401 if (E1.isA<ErrorList>()) { in join()
402 auto &E1List = static_cast<ErrorList &>(*E1.getPtr()); in join()
403 if (E2.isA<ErrorList>()) { in join()
405 auto &E2List = static_cast<ErrorList &>(*E2Payload); in join()
413 if (E2.isA<ErrorList>()) { in join()
414 auto &E2List = static_cast<ErrorList &>(*E2.getPtr()); in join()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DError.h161 friend class ErrorList; variable
359 class ErrorList final : public ErrorInfo<ErrorList> {
383 ErrorList(std::unique_ptr<ErrorInfoBase> Payload1, in ErrorList() function
385 assert(!Payload1->isA<ErrorList>() && !Payload2->isA<ErrorList>() && in ErrorList()
396 if (E1.isA<ErrorList>()) { in join()
397 auto &E1List = static_cast<ErrorList &>(*E1.getPtr()); in join()
398 if (E2.isA<ErrorList>()) { in join()
400 auto &E2List = static_cast<ErrorList &>(*E2Payload); in join()
408 if (E2.isA<ErrorList>()) { in join()
409 auto &E2List = static_cast<ErrorList &>(*E2.getPtr()); in join()
[all …]
/external/llvm/lib/Support/
DError.cpp53 char ErrorList::ID = 0;
68 std::error_code ErrorList::convertToErrorCode() const { in convertToErrorCode()
/external/llvm-project/llvm/lib/Support/
DError.cpp55 char ErrorList::ID = 0;
72 std::error_code ErrorList::convertToErrorCode() const { in convertToErrorCode()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DError.cpp55 char ErrorList::ID = 0;
72 std::error_code ErrorList::convertToErrorCode() const { in convertToErrorCode()
/external/starlark-go/resolve/
Dresolve_test.go42 for _, err := range err.(resolve.ErrorList) {
Dresolve.go170 type ErrorList []Error // len > 0 type
172 func (e ErrorList) Error() string { return e[0].Error() }
222 errors ErrorList
/external/llvm-project/llvm/unittests/Support/
DParallelTest.cpp90 EXPECT_TRUE(e.isA<ErrorList>()); in TEST()
/external/llvm-project/llvm/docs/
DProgrammersManual.rst932 The ``joinErrors`` routine builds a special error type called ``ErrorList``,
937 errors and return the resulting ``ErrorList``.