Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h2571 DeclContext *CommonAncestor; variable
2586 DeclContext *CommonAncestor) in UsingDirectiveDecl() argument
2589 NominatedNamespace(Nominated), CommonAncestor(CommonAncestor) { } in UsingDirectiveDecl()
2616 DeclContext *getCommonAncestor() { return CommonAncestor; } in getCommonAncestor()
2617 const DeclContext *getCommonAncestor() const { return CommonAncestor; } in getCommonAncestor()
2635 DeclContext *CommonAncestor);
/external/clang/lib/Sema/
DSemaLookup.cpp58 const DeclContext *CommonAncestor; member in __anon8be4ae310111::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.cpp7576 DeclContext *CommonAncestor = cast<DeclContext>(NS); in ActOnUsingDirective() local
7577 while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) in ActOnUsingDirective()
7578 CommonAncestor = CommonAncestor->getParent(); in ActOnUsingDirective()
7582 IdentLoc, Named, CommonAncestor); in ActOnUsingDirective()
/external/clang/lib/AST/
DDeclCXX.cpp1957 DeclContext *CommonAncestor) { in Create() argument
1961 IdentLoc, Used, CommonAncestor); in Create()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp1274 D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx); in VisitUsingDirectiveDecl()