Home
last modified time | relevance | path

Searched refs:ErrOut (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp368 llvm::Error &ErrOut, in Interpreter() argument
373 llvm::ErrorAsOutParameter EAO(&ErrOut); in Interpreter()
378 return std::make_unique<IncrementalAction>(*CI, *Ctx, ErrOut, *this, in Interpreter()
382 if (ErrOut) in Interpreter()
386 IncrParser = std::make_unique<IncrementalParser>(*CI, ErrOut); in Interpreter()
388 if (ErrOut) in Interpreter()
404 ErrOut = joinErrors(std::move(ErrOut), std::move(Err)); in Interpreter()
415 ErrOut = joinErrors(std::move(ErrOut), std::move(Err)); in Interpreter()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp9861 ASTImportError ErrOut; in Import() local
9863 [&ErrOut](const ASTImportError &E) { ErrOut = E; }); in Import()
9864 setImportDeclError(FromD, ErrOut); in Import()
9867 SharedState->setImportDeclError(Pos->second, ErrOut); in Import()
9885 setImportDeclError(FromDi, ErrOut); in Import()
9890 SharedState->setImportDeclError(Ii->second, ErrOut); in Import()
9898 return make_error<ASTImportError>(ErrOut); in Import()