Searched defs:FromDC (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Sema/
H A DSemaAccess.cpp260 const DeclContext *FromDC = From->getDeclContext()->getPrimaryContext(); local
262 if (FromDC == ToDC) return true;
263 if (FromDC->isFileContext() || ToDC->isFileContext()) return false;
/external/clang/lib/AST/
H A DASTImporter.cpp87 void ImportDeclContext(DeclContext *FromDC, bool ForceImport = false);
1897 void ASTNodeImporter::ImportDeclContext(DeclContext *FromDC, bool ForceImport) { argument
1899 Importer.ImportContext(FromDC);
1903 for (auto *From : FromDC->decls())
4651 DeclContext *ASTImporter::ImportContext(DeclContext *FromDC) { argument
4652 if (!FromDC)
4653 return FromDC;
4655 DeclContext *ToDC = cast_or_null<DeclContext>(Import(cast<Decl>(FromDC)));
4662 RecordDecl *FromRecord = cast<RecordDecl>(FromDC);
4672 EnumDecl *FromEnum = cast<EnumDecl>(FromDC);
[all...]

Completed in 1773 milliseconds