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

References

tools/clang/lib/AST/DeclBase.cpp
  405   if (CheckUsedAttr && getMostRecentDecl()->hasAttr<UsedAttr>())
  410   return getMostRecentDecl()->getCanonicalDecl()->Used;
 1623     (void)cast<Decl>(this)->getMostRecentDecl();
tools/clang/lib/CodeGen/CodeGenModule.cpp
 5675     const Decl *D = Val.first.getDecl()->getMostRecentDecl();
tools/clang/lib/Serialization/ASTWriter.cpp
 6525   for (auto Prev = D->getMostRecentDecl(); Prev; Prev = Prev->getPreviousDecl())
tools/clang/lib/Serialization/ASTWriterDecl.cpp
  176       for (const Decl *R = D->getMostRecentDecl(); R; R = R->getPreviousDecl()) {
 1749       for (const Decl *Prev = FirstLocal->getMostRecentDecl();