| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | Error.h | 48 class ErrorInfoBase { 50 virtual ~ErrorInfoBase() = default; 198 Error(std::unique_ptr<ErrorInfoBase> Payload) { in Error() 271 ErrorInfoBase *getPtr() const { in getPtr() 273 return reinterpret_cast<ErrorInfoBase*>( in getPtr() 281 void setPtr(ErrorInfoBase *EI) { in setPtr() 283 Payload = reinterpret_cast<ErrorInfoBase*>( in setPtr() 302 Payload = reinterpret_cast<ErrorInfoBase*>( in setChecked() 309 std::unique_ptr<ErrorInfoBase> takePayload() { in takePayload() 310 std::unique_ptr<ErrorInfoBase> Tmp(getPtr()); in takePayload() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | Error.cpp | 53 void ErrorInfoBase::anchor() {} in anchor() 54 char ErrorInfoBase::ID = 0; 65 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) { in logAllUnhandledErrors() 95 handleAllErrors(std::move(Err), [&](const ErrorInfoBase &EI) { in errorToErrorCode() 153 return reinterpret_cast<ErrorInfoBase *>(Err)->dynamicClassID(); in LLVMGetErrorTypeId()
|
| H A D | WithColor.cpp | 138 handleAllErrors(std::move(Err), [](ErrorInfoBase &Info) { in defaultErrorHandler() 144 handleAllErrors(std::move(Warning), [](ErrorInfoBase &Info) { in defaultWarningHandler()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/Symbolize/ |
| H A D | DIPrinter.h | 27 class ErrorInfoBase; variable 54 const ErrorInfoBase &ErrorInfo, 99 bool printError(const Request &Request, const ErrorInfoBase &ErrorInfo, 150 bool printError(const Request &Request, const ErrorInfoBase &ErrorInfo,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Testing/Support/ |
| H A D | Error.cpp | 16 std::vector<std::shared_ptr<ErrorInfoBase>> Infos; in TakeError() 18 [&Infos](std::unique_ptr<ErrorInfoBase> Info) { in TakeError()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ToolDrivers/llvm-lib/ |
| H A D | LibDriver.cpp | 104 handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EIB) { in fatalOpenError() 206 handleAllErrors(ChildMB.takeError(), [&](const ErrorInfoBase &EIB) { in appendFile() 232 handleAllErrors(MaybeFileMachine.takeError(), [&](const ErrorInfoBase &EIB) { in appendFile() 380 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) { in libDriverMain()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
| H A D | BitReader.cpp | 45 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in LLVMParseBitcodeInContext() 91 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in LLVMGetBitcodeModuleInContext()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IRReader/ |
| H A D | IRReader.cpp | 40 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in getLazyIRModule() 79 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in parseIR()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/ |
| H A D | llvm-cvtres.cpp | 82 handleAllErrors(std::move(EC), [&](const ErrorInfoBase &EI) { in error() 91 [&](const ErrorInfoBase &EI) { reportError(EI.message()); }); in error()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-opt-report/ |
| H A D | OptReport.cpp | 159 handleAllErrors(Format.takeError(), [&](const ErrorInfoBase &PE) { in readLocationInfo() 169 handleAllErrors(MaybeParser.takeError(), [&](const ErrorInfoBase &PE) { in readLocationInfo() 186 handleAllErrors(std::move(E), [&](const ErrorInfoBase &PE) { in readLocationInfo()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Interpreter.cpp | 39 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in create()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | LLVMRemarkStreamer.h | 46 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EIB) { in LLVMRemarkSetupErrorInfo()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/ |
| H A D | func-id-helper.cpp | 44 handleAllErrors(ResOrErr.takeError(), [&](const ErrorInfoBase &) { in SymbolOrNumber() argument
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | Serialization.h | 320 std::function<Error(ChannelT &C, const ErrorInfoBase &)>; 350 ChannelT &C, const ErrorInfoBase &EIB) -> Error { in registerErrorType() 366 return handleErrors(std::move(Err), [&C](const ErrorInfoBase &EIB) { in serialize() 393 static Error serializeAsStringError(ChannelT &C, const ErrorInfoBase &EIB) { in serializeAsStringError()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | ObjectFilePCHContainerOperations.cpp | 347 handleAllErrors(E.takeError(), [&](const llvm::ErrorInfoBase &EIB) { in ExtractPCH() 355 handleAllErrors(OFOrErr.takeError(), [&](const llvm::ErrorInfoBase &EIB) { in ExtractPCH()
|
| H A D | CodeGenAction.cpp | 937 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in CreateASTConsumer() 988 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in loadModule()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/ |
| H A D | DIPrinter.cpp | 267 const ErrorInfoBase &ErrorInfo, in printError() 376 const ErrorInfoBase &ErrorInfo, in printError()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-mt/ |
| H A D | llvm-mt.cpp | 78 handleAllErrors(std::move(EC), [&](const ErrorInfoBase &EI) { in error()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/ |
| H A D | SupportHelpers.h | 26 std::vector<std::shared_ptr<ErrorInfoBase>> Infos;
|
| H A D | Error.h | 142 for (const std::shared_ptr<ErrorInfoBase> &Info: Holder.Infos) in MatchAndExplain()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
| H A D | llvm-readobj.cpp | 407 [&](const ErrorInfoBase &EI) { error(EI.message()); }); in reportError() 420 createFileError(Input, std::move(Err)), [&](const ErrorInfoBase &EI) { in reportWarning()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/ |
| H A D | llvm-symbolizer.cpp | 85 [&](const ErrorInfoBase &EI) { in print()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/ |
| H A D | ThinLTOCodeGenerator.cpp | 198 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in loadModuleFromInput() 224 handleAllErrors(Result.takeError(), [&](ErrorInfoBase &EIB) { in crossImportIntoModule()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/gold/ |
| H A D | gold-plugin.cpp | 497 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) -> Error { in check() 547 handleAllErrors(ObjOrErr.takeError(), [&](const ErrorInfoBase &EI) { in claim_file_hook()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lto2/ |
| H A D | llvm-lto2.cpp | 169 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in check()
|