Home
last modified time | relevance | path

Searched refs:ImportContext (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTImporter.h385 llvm::Expected<DeclContext *> ImportContext(DeclContext *FromDC);
/llvm-project-15.0.7/clang/lib/AST/
H A DASTImporter.cpp1840 auto ToDCOrErr = Importer.ImportContext(FromDC); in ImportDeclContext()
1931 auto ToDCOrErr = Importer.ImportContext(FromDC); in ImportDeclContext()
1962 auto ToDCOrErr = Importer.ImportContext(FromD->getDeclContext()); in ImportDeclContext()
1968 auto ToLexicalDCOrErr = Importer.ImportContext( in ImportDeclContext()
2319 auto DCOrErr = Importer.ImportContext(D->getDeclContext()); in VisitAccessSpecDecl()
2338 auto DCOrErr = Importer.ImportContext(D->getDeclContext()); in VisitStaticAssertDecl()
4853 auto ToComAncestorOrErr = Importer.ImportContext(D->getCommonAncestor()); in VisitUsingDirectiveDecl()
6776 auto ParentContextOrErr = Importer.ImportContext(E->getParentContext()); in VisitSourceLocExpr()
7535 auto UsedContextOrErr = Importer.ImportContext(E->getUsedContext()); in VisitCXXDefaultArgExpr()
8230 auto UsedContextOrErr = Importer.ImportContext(E->getUsedContext()); in VisitCXXDefaultInitExpr()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp873 Expected<DeclContext *> dc_or_err = ImportContext(td->getDeclContext()); in ImportImpl()