Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp778 if (!ImporterSharedSt) in lazyInitImporterSharedSt()
779 ImporterSharedSt = std::make_shared<ASTImporterSharedState>(*ToTU); in lazyInitImporterSharedSt()
792 From.getSourceManager().getFileManager(), false, ImporterSharedSt); in getOrCreateASTImporter()
805 if (!ImporterSharedSt) in isImportedAsNew()
807 return ImporterSharedSt->isNewDecl(const_cast<Decl *>(ToDecl)); in isImportedAsNew()
811 if (!ImporterSharedSt) in hasError()
814 ImporterSharedSt->getImportDeclErrorIfAny(const_cast<Decl *>(ToDecl))); in hasError()
/freebsd/contrib/llvm-project/clang/include/clang/CrossTU/
H A DCrossTranslationUnit.h228 std::shared_ptr<ASTImporterSharedState> ImporterSharedSt; variable