/external/llvm/include/llvm/Support/ |
D | Error.h | 33 class ErrorInfoBase { 35 virtual ~ErrorInfoBase() {} in ~ErrorInfoBase() 173 Error(std::unique_ptr<ErrorInfoBase> Payload) { in Error() 236 ErrorInfoBase *getPtr() const { in getPtr() 244 void setPtr(ErrorInfoBase *EI) { in setPtr() 266 std::unique_ptr<ErrorInfoBase> takePayload() { in takePayload() 267 std::unique_ptr<ErrorInfoBase> Tmp(getPtr()); in takePayload() 274 PointerIntPair<ErrorInfoBase *, 1> PayloadAndCheckedBit; 276 ErrorInfoBase *Payload; 295 template <typename ThisErrT, typename ParentErrT = ErrorInfoBase> [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Error.h | 46 class ErrorInfoBase { 48 virtual ~ErrorInfoBase() = default; 189 Error(std::unique_ptr<ErrorInfoBase> Payload) { in Error() 252 ErrorInfoBase *getPtr() const { in getPtr() 253 return reinterpret_cast<ErrorInfoBase*>( in getPtr() 258 void setPtr(ErrorInfoBase *EI) { in setPtr() 260 Payload = reinterpret_cast<ErrorInfoBase*>( in setPtr() 278 Payload = reinterpret_cast<ErrorInfoBase*>( in setChecked() 284 std::unique_ptr<ErrorInfoBase> takePayload() { in takePayload() 285 std::unique_ptr<ErrorInfoBase> Tmp(getPtr()); in takePayload() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | Error.h | 48 class ErrorInfoBase { 50 virtual ~ErrorInfoBase() = default; 194 Error(std::unique_ptr<ErrorInfoBase> Payload) { in Error() 267 ErrorInfoBase *getPtr() const { in getPtr() 268 return reinterpret_cast<ErrorInfoBase*>( in getPtr() 273 void setPtr(ErrorInfoBase *EI) { in setPtr() 275 Payload = reinterpret_cast<ErrorInfoBase*>( in setPtr() 293 Payload = reinterpret_cast<ErrorInfoBase*>( in setChecked() 299 std::unique_ptr<ErrorInfoBase> takePayload() { in takePayload() 300 std::unique_ptr<ErrorInfoBase> Tmp(getPtr()); in takePayload() [all …]
|
/external/llvm/lib/Support/ |
D | Error.cpp | 51 void ErrorInfoBase::anchor() {} in anchor() 52 char ErrorInfoBase::ID = 0; 61 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) { in logAllUnhandledErrors() 86 handleAllErrors(std::move(Err), [&](const ErrorInfoBase &EI) { in errorToErrorCode()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | Error.cpp | 51 void ErrorInfoBase::anchor() {} in anchor() 52 char ErrorInfoBase::ID = 0; 61 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) { in logAllUnhandledErrors() 86 handleAllErrors(std::move(Err), [&](const ErrorInfoBase &EI) { in errorToErrorCode()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Testing/Support/ |
D | Error.cpp | 17 std::vector<std::shared_ptr<ErrorInfoBase>> Infos; in TakeError() 19 [&Infos](std::unique_ptr<ErrorInfoBase> Info) { in TakeError()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/ |
D | BitReader.cpp | 46 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in LLVMParseBitcodeInContext() 92 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in LLVMGetBitcodeModuleInContext()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IRReader/ |
D | IRReader.cpp | 41 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in getLazyIRModule() 81 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in parseIR()
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | OrcRemoteTargetClient.h | 244 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { 261 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { 280 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { 297 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { 316 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { 334 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { 349 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-lib/ |
D | LibDriver.cpp | 148 handleAllErrors(MOrErr.takeError(), [&](const ErrorInfoBase &EIB) { in libDriverMain() 170 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) { in libDriverMain()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Testing/Support/ |
D | SupportHelpers.h | 20 std::vector<std::shared_ptr<ErrorInfoBase>> Infos;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.cpp | 40 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in create()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/ |
D | func-id-helper.cpp | 40 handleAllErrors(ResOrErr.takeError(), [&](const ErrorInfoBase &) { in SymbolOrNumber() argument
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
D | GlobPatternTest.cpp | 68 handleAllErrors(Pat1.takeError(), [&](ErrorInfoBase &EIB) {}); in TEST_F()
|
D | JSONTest.cpp | 128 handleAllErrors(E.takeError(), [S](const llvm::ErrorInfoBase &E) { in TEST() 169 handleAllErrors(E.takeError(), [S, Msg](const llvm::ErrorInfoBase &E) { in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | RPCSerialization.h | 372 std::function<Error(ChannelT &C, const ErrorInfoBase&)>; 403 [KeyName, Serialize](ChannelT &C, const ErrorInfoBase &EIB) -> Error { in registerErrorType() 420 [&C](const ErrorInfoBase &EIB) { in serialize() 448 static Error serializeAsStringError(ChannelT &C, const ErrorInfoBase &EIB) { in serializeAsStringError()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mt/ |
D | llvm-mt.cpp | 84 handleAllErrors(std::move(EC), [&](const ErrorInfoBase &EI) { in error()
|
/external/mesa3d/src/gallium/state_trackers/clover/llvm/ |
D | compat.hpp | 202 ::llvm::handleAllErrors(std::move(err), [&](::llvm::ErrorInfoBase &eib) { in handle_module_error()
|
/external/llvm/lib/LibDriver/ |
D | LibDriver.cpp | 141 handleAllErrors(MOrErr.takeError(), [&](const llvm::ErrorInfoBase &EIB) { in libDriverMain()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cvtres/ |
D | llvm-cvtres.cpp | 88 [&](const ErrorInfoBase &EI) { reportError(EI.message()); }); in error()
|
/external/llvm/tools/llvm-dis/ |
D | llvm-dis.cpp | 186 handleAllErrors(MOrErr.takeError(), [&](ErrorInfoBase &EIB) { in main()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | RelocVisitor.h | 121 handleAllErrors(AddendOrErr.takeError(), [](const ErrorInfoBase &EI) { in getELFAddend()
|
/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcCBindingsStack.h | 257 handleAllErrors(std::move(Err), [&](ErrorInfoBase &EIB) { in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/ |
D | ThinLTOCodeGenerator.cpp | 186 handleAllErrors(ModuleOrErr.takeError(), [&](ErrorInfoBase &EIB) { in loadModuleFromBuffer() 210 handleAllErrors(Result.takeError(), [&](ErrorInfoBase &EIB) { in crossImportIntoModule()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-lto2/ |
D | llvm-lto2.cpp | 122 handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) { in check()
|