reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Support/Error.h
  165   friend Error handleErrors(Error E, HandlerTs &&... Handlers);
  363   friend Error handleErrors(Error E, HandlerTs &&... Handlers);

References

include/llvm/ExecutionEngine/Orc/RPCSerialization.h
  380     return handleErrors(std::move(Err),
include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
  176     return handleErrors(std::move(Err),
include/llvm/Support/Error.h
  925   cantFail(handleErrors(std::move(E), std::forward<HandlerTs>(Handlers)...));
  964   if (auto Err = handleErrors(ValOrErr.takeError(),
lib/LTO/Caching.cpp
  109         E = handleErrors(std::move(E), [&](const ECError &E) -> Error {
lib/LTO/ThinLTOCodeGenerator.cpp
  378     if (auto Err = handleErrors(
lib/Object/Error.cpp
   81   return handleErrors(std::move(Err), [](std::unique_ptr<ECError> M) -> Error {
lib/ProfileData/Coverage/CoverageMapping.cpp
  298   return handleErrors(
lib/ProfileData/InstrProfReader.cpp
  701           if (Error Unhandled = handleErrors(
lib/Support/FileCheck.cpp
 1365       handleErrors(std::move(MatchErrors),
tools/clang/include/clang/Basic/DiagnosticError.h
   41     Err = llvm::handleErrors(std::move(Err), [&](DiagnosticError &E) {
tools/clang/lib/Tooling/Refactoring/AtomicChange.cpp
  270     return llvm::handleErrors(
tools/clang/tools/extra/clangd/JSONTransport.cpp
   20   if (llvm::Error Unhandled = llvm::handleErrors(
tools/clang/unittests/AST/ASTImporterFixtures.h
  215     auto Err = llvm::handleErrors(
tools/clang/unittests/Tooling/StencilTest.cpp
  102       auto Err = llvm::handleErrors(ResultOrErr.takeError(),
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
  626         return handleErrors(std::move(relocErr),
  662         return handleErrors(std::move(relocErr),
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
 1200         llvm::handleErrors(return_value.takeError(), [&](PythonException &E) {
tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
   81       handleErrors(std::move(error), [](const DebugNames::SentinelError &) {}),
tools/lldb/source/Utility/Status.cpp
   66   error = llvm::handleErrors(
tools/lldb/tools/lldb-server/lldb-platform.cpp
  110           handleErrors(llvm::writeFileAtomically(
tools/llvm-mca/llvm-mca.cpp
  383             handleErrors(RegionsOrErr.takeError(), [](const StringError &E) {
  471         if (auto NewE = handleErrors(
tools/llvm-profdata/llvm-profdata.cpp
  109   E = handleErrors(std::move(E),
unittests/DebugInfo/DWARF/DWARFDebugLineTest.cpp
   99         handleErrors(std::move(Err), [&](const ErrorInfoBase &Actual) {
unittests/DebugInfo/GSYM/GSYMTest.cpp
   34       handleErrors(std::move(Err), [&](const ErrorInfoBase &Actual) {
unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
  667                return handleErrors(
  737                  return handleErrors(
unittests/Support/ErrorTest.cpp
  424   Error E = handleErrors(
  893   auto E31 = handleErrors(std::move(FE3), [](std::unique_ptr<FileError> F) {