Home
last modified time | relevance | path

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

/external/llvm-project/clang/include/clang/AST/
DASTImporterSharedState.h30 class ASTImporterSharedState {
47 ASTImporterSharedState() = default;
49 ASTImporterSharedState(TranslationUnitDecl &ToTU) { in ASTImporterSharedState() function
DASTImporter.h38 class ASTImporterSharedState; variable
225 std::shared_ptr<ASTImporterSharedState> SharedState = nullptr;
323 std::shared_ptr<ASTImporterSharedState> SharedState = nullptr);
DExternalASTMerger.h112 std::shared_ptr<ASTImporterSharedState> SharedState;
/external/llvm-project/clang/unittests/AST/
DASTImporterFixtures.cpp57 const std::shared_ptr<ASTImporterSharedState> &SharedState) { in TU()
66 const std::shared_ptr<ASTImporterSharedState> &SharedState, in lazyInitImporter()
80 const std::shared_ptr<ASTImporterSharedState> &SharedState, ASTUnit *ToAST, in import()
92 const std::shared_ptr<ASTImporterSharedState> &SharedState, ASTUnit *ToAST, in importOrError()
99 const std::shared_ptr<ASTImporterSharedState> &SharedState, ASTUnit *ToAST, in import()
113 SharedStatePtr = std::make_shared<ASTImporterSharedState>(*ToTU); in lazyInitSharedState()
DASTImporterFixtures.h34 class ASTImporterSharedState; variable
94 const std::shared_ptr<ASTImporterSharedState> &SharedState)>
126 lazyInitImporter(const std::shared_ptr<ASTImporterSharedState> &SharedState,
128 Decl *import(const std::shared_ptr<ASTImporterSharedState> &SharedState,
131 importOrError(const std::shared_ptr<ASTImporterSharedState> &SharedState,
133 QualType import(const std::shared_ptr<ASTImporterSharedState> &SharedState,
153 std::shared_ptr<ASTImporterSharedState> SharedStatePtr;
DASTImporterTest.cpp107 const std::shared_ptr<ASTImporterSharedState> &SharedState) { in RedirectingImporterTest()
4788 const std::shared_ptr<ASTImporterSharedState> &SharedState) { in ErrorHandlingTest()
5280 const std::shared_ptr<ASTImporterSharedState> &SharedState) { in LLDBLookupTest()
5904 const std::shared_ptr<ASTImporterSharedState> &SharedState) { in ImportWithExternalSource()
/external/llvm-project/clang/lib/Frontend/
DASTMerge.cpp41 auto SharedState = std::make_shared<ASTImporterSharedState>( in ExecuteAction()
/external/llvm-project/clang/lib/AST/
DExternalASTMerger.cpp116 std::shared_ptr<ASTImporterSharedState> SharedState) in LazyASTImporter()
399 SharedState = std::make_shared<ASTImporterSharedState>( in ExternalASTMerger()
DASTImporter.cpp7971 std::shared_ptr<ASTImporterSharedState> SharedState) in ASTImporter()
7978 this->SharedState = std::make_shared<ASTImporterSharedState>(); in ASTImporter()
/external/llvm-project/clang/include/clang/CrossTU/
DCrossTranslationUnit.h219 std::shared_ptr<ASTImporterSharedState> ImporterSharedSt;
/external/llvm-project/clang/docs/
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>();
DInternalsManual.rst1693 "to" context in ``ASTImporterSharedState::ImportErrors``. Note that, there may
1817 lookup only via the ``ASTImporterSharedState`` class.
/external/llvm-project/clang/lib/CrossTU/
DCrossTranslationUnit.cpp743 ImporterSharedSt = std::make_shared<ASTImporterSharedState>(*ToTU); in lazyInitImporterSharedSt()