Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h2552 DeclContext *CommonAncestor; variable
2567 DeclContext *CommonAncestor) in UsingDirectiveDecl() argument
2570 NominatedNamespace(Nominated), CommonAncestor(CommonAncestor) { } in UsingDirectiveDecl()
2597 DeclContext *getCommonAncestor() { return CommonAncestor; } in getCommonAncestor()
2598 const DeclContext *getCommonAncestor() const { return CommonAncestor; } in getCommonAncestor()
2616 DeclContext *CommonAncestor);
/external/clang/lib/Sema/
DSemaLookup.cpp58 const DeclContext *CommonAncestor; member in __anonf7278da80111::UnqualUsingEntry
62 const DeclContext *CommonAncestor) in UnqualUsingEntry() argument
63 : Nominated(Nominated), CommonAncestor(CommonAncestor) { in UnqualUsingEntry()
67 return CommonAncestor; in getCommonAncestor()
DSemaCodeComplete.cpp455 for (const DeclContext *CommonAncestor = TargetContext; in getRequiredQualification() local
456 CommonAncestor && !CommonAncestor->Encloses(CurContext); in getRequiredQualification()
457 CommonAncestor = CommonAncestor->getLookupParent()) { in getRequiredQualification()
458 if (CommonAncestor->isTransparentContext() || in getRequiredQualification()
459 CommonAncestor->isFunctionOrMethod()) in getRequiredQualification()
462 TargetParents.push_back(CommonAncestor); in getRequiredQualification()
DSemaDeclCXX.cpp7137 DeclContext *CommonAncestor = cast<DeclContext>(NS); in ActOnUsingDirective() local
7138 while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) in ActOnUsingDirective()
7139 CommonAncestor = CommonAncestor->getParent(); in ActOnUsingDirective()
7143 IdentLoc, Named, CommonAncestor); in ActOnUsingDirective()
/external/clang/lib/AST/
DDeclCXX.cpp1914 DeclContext *CommonAncestor) { in Create() argument
1918 IdentLoc, Used, CommonAncestor); in Create()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp1189 D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx); in VisitUsingDirectiveDecl()