reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/AST/ASTContext.cpp
 9879       LexicalContext = LexicalContext->getLexicalParent();
tools/clang/lib/AST/DeclBase.cpp
  342     LDC = LDC->getLexicalParent();
 1111       return getLexicalParent()->isDependentContext();
 1135     DC = DC->getLexicalParent();
 1150     DC = DC->getLexicalParent();
tools/clang/lib/AST/ODRHash.cpp
  525         if (DC->getLexicalParent()->isFileContext()) return;
tools/clang/lib/Sema/SemaLambda.cpp
  269     DC = DC->getLexicalParent();
tools/clang/lib/Sema/SemaModule.cpp
  337   for (auto *DC = D->getLexicalDeclContext(); DC; DC = DC->getLexicalParent())
  549   for (const DeclContext *DC = CurContext; DC; DC = DC->getLexicalParent()) {
tools/clang/tools/extra/clang-tidy/bugprone/ForwardDeclarationNamespaceCheck.cpp
   84   const DeclContext *ParentDecl1 = Decl1->getLexicalParent();
   85   const DeclContext *ParentDecl2 = Decl2->getLexicalParent();
  104   const auto *ParentDecl = Decl->getLexicalParent();