Home
last modified time | relevance | path

Searched refs:CommonAncestor (Results 1 – 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
DDeclCXX.h2631 DeclContext *CommonAncestor; variable
2646 DeclContext *CommonAncestor) in UsingDirectiveDecl() argument
2649 NominatedNamespace(Nominated), CommonAncestor(CommonAncestor) { } in UsingDirectiveDecl()
2676 DeclContext *getCommonAncestor() { return CommonAncestor; } in getCommonAncestor()
2677 const DeclContext *getCommonAncestor() const { return CommonAncestor; } in getCommonAncestor()
2695 DeclContext *CommonAncestor);
/external/clang/lib/Sema/
DSemaLookup.cpp61 const DeclContext *CommonAncestor; member in __anonc7324bd00111::UnqualUsingEntry
65 const DeclContext *CommonAncestor) in UnqualUsingEntry() argument
66 : Nominated(Nominated), CommonAncestor(CommonAncestor) { in UnqualUsingEntry()
70 return CommonAncestor; in getCommonAncestor()
DSemaCodeComplete.cpp454 for (const DeclContext *CommonAncestor = TargetContext; in getRequiredQualification() local
455 CommonAncestor && !CommonAncestor->Encloses(CurContext); in getRequiredQualification()
456 CommonAncestor = CommonAncestor->getLookupParent()) { in getRequiredQualification()
457 if (CommonAncestor->isTransparentContext() || in getRequiredQualification()
458 CommonAncestor->isFunctionOrMethod()) in getRequiredQualification()
461 TargetParents.push_back(CommonAncestor); in getRequiredQualification()
DSemaDeclCXX.cpp7764 DeclContext *CommonAncestor = cast<DeclContext>(NS); in ActOnUsingDirective() local
7765 while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) in ActOnUsingDirective()
7766 CommonAncestor = CommonAncestor->getParent(); in ActOnUsingDirective()
7770 IdentLoc, Named, CommonAncestor); in ActOnUsingDirective()
/external/clang/lib/AST/
DDeclCXX.cpp2037 DeclContext *CommonAncestor) { in Create() argument
2041 IdentLoc, Used, CommonAncestor); in Create()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp1441 D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx); in VisitUsingDirectiveDecl()