Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DASTImporter.h238 llvm::Expected<DeclContext *> ImportContext(DeclContext *FromDC);
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTImporter.cpp1649 auto ToDCOrErr = Importer.ImportContext(FromDC); in ImportDeclContext()
1666 auto ToDCOrErr = Importer.ImportContext(FromD->getDeclContext()); in ImportDeclContext()
1672 auto ToLexicalDCOrErr = Importer.ImportContext( in ImportDeclContext()
2115 auto DCOrErr = Importer.ImportContext(D->getDeclContext()); in VisitAccessSpecDecl()
2134 auto DCOrErr = Importer.ImportContext(D->getDeclContext()); in VisitStaticAssertDecl()
4248 auto ToComAncestorOrErr = Importer.ImportContext(D->getCommonAncestor()); in VisitUsingDirectiveDecl()
7789 Expected<DeclContext *> ASTImporter::ImportContext(DeclContext *FromDC) { in ImportContext() function in ASTImporter