Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTImporter.h424 llvm::Expected<Stmt *> Import(Stmt *FromS);
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTImporter.cpp8545 Expected<Stmt *> ASTImporter::Import(Stmt *FromS) { in Import() argument
8546 if (!FromS) in Import()
8550 llvm::DenseMap<Stmt *, Stmt *>::iterator Pos = ImportedStmts.find(FromS); in Import()
8556 ExpectedStmt ToSOrErr = Importer.Visit(FromS); in Import()
8561 auto *FromE = cast<Expr>(FromS); in Import()
8570 ImportedStmts[FromS] = *ToSOrErr; in Import()