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

References

tools/clang/include/clang/AST/DeclBase.h
  970     return getPreviousDecl() == nullptr;
tools/clang/lib/AST/ExprConstant.cpp
   88            Redecl = cast_or_null<ValueDecl>(Redecl->getPreviousDecl())) {
tools/clang/lib/AST/Interp/Program.cpp
   94   for (const Decl *P = VD; P; P = P->getPreviousDecl()) {
  151     for (const Decl *P = VD; P; P = P->getPreviousDecl())
tools/clang/lib/Sema/SemaDecl.cpp
 9906   for (const Decl *D = FD->getPreviousDecl(); D; D = D->getPreviousDecl()) {
tools/clang/lib/Sema/SemaDeclAttr.cpp
 7830          Redecl = Redecl->getPreviousDecl()) {
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()) {
 1714   for (const Decl *Redecl = D; Redecl; Redecl = Redecl->getPreviousDecl())
 1750            Prev != FirstLocal; Prev = Prev->getPreviousDecl())
tools/clang/tools/extra/clang-tidy/readability/RedundantDeclarationCheck.cpp
   42   const auto *Prev = D->getPreviousDecl();