Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h2565 DeclContext *CommonAncestor; variable
2580 DeclContext *CommonAncestor) in UsingDirectiveDecl() argument
2583 NominatedNamespace(Nominated), CommonAncestor(CommonAncestor) { } in UsingDirectiveDecl()
2610 DeclContext *getCommonAncestor() { return CommonAncestor; } in getCommonAncestor()
2611 const DeclContext *getCommonAncestor() const { return CommonAncestor; } in getCommonAncestor()
2629 DeclContext *CommonAncestor);
/external/clang/lib/Sema/
DSemaLookup.cpp62 const DeclContext *CommonAncestor; member in __anon54059c910111::UnqualUsingEntry
66 const DeclContext *CommonAncestor) in UnqualUsingEntry() argument
67 : Nominated(Nominated), CommonAncestor(CommonAncestor) { in UnqualUsingEntry()
71 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.cpp7600 DeclContext *CommonAncestor = cast<DeclContext>(NS); in ActOnUsingDirective() local
7601 while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) in ActOnUsingDirective()
7602 CommonAncestor = CommonAncestor->getParent(); in ActOnUsingDirective()
7606 IdentLoc, Named, CommonAncestor); in ActOnUsingDirective()
/external/clang/lib/AST/
DDeclCXX.cpp1973 DeclContext *CommonAncestor) { in Create() argument
1977 IdentLoc, Used, CommonAncestor); in Create()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp1374 D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx); in VisitUsingDirectiveDecl()