Home
last modified time | relevance | path

Searched refs:ASTImporterSharedState (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTImporterSharedState.h30 class ASTImporterSharedState {
47 ASTImporterSharedState() = default;
49 ASTImporterSharedState(TranslationUnitDecl &ToTU) { in ASTImporterSharedState() function
H A DASTImporter.h38 class ASTImporterSharedState; variable
221 std::shared_ptr<ASTImporterSharedState> SharedState = nullptr;
319 std::shared_ptr<ASTImporterSharedState> SharedState = nullptr);
H A DExternalASTMerger.h112 std::shared_ptr<ASTImporterSharedState> SharedState;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DASTMerge.cpp41 auto SharedState = std::make_shared<ASTImporterSharedState>( in ExecuteAction()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExternalASTMerger.cpp116 std::shared_ptr<ASTImporterSharedState> SharedState) in LazyASTImporter()
399 SharedState = std::make_shared<ASTImporterSharedState>( in ExternalASTMerger()
H A DASTImporter.cpp8116 std::shared_ptr<ASTImporterSharedState> SharedState) in ASTImporter()
8123 this->SharedState = std::make_shared<ASTImporterSharedState>(); in ASTImporter()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/CrossTU/
H A DCrossTranslationUnit.h217 std::shared_ptr<ASTImporterSharedState> ImporterSharedSt;
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DLibASTImporter.rst451 This time we create a shared_ptr for ``ASTImporterSharedState`` which owns the associated errors fo…
452 … context but from different "from" contexts; they should share the same ``ASTImporterSharedState``.
453 (Also note, we have to include the corresponding ``ASTImporterSharedState.h`` header file.)
457 auto ImporterState = std::make_shared<ASTImporterSharedState>();
H A DInternalsManual.rst2254 "to" context in ``ASTImporterSharedState::ImportErrors``. Note that, there may
2378 lookup only via the ``ASTImporterSharedState`` class.
/netbsd-src/external/apache2/llvm/dist/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp743 ImporterSharedSt = std::make_shared<ASTImporterSharedState>(*ToTU); in lazyInitImporterSharedSt()