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

References

tools/clang/include/clang/AST/Decl.h
 3065   const TypedefNameDecl *getCanonicalDecl() const { return getFirstDecl(); }
tools/clang/include/clang/AST/DeclCXX.h
 3008     return getFirstDecl();
 3125     return getFirstDecl();
tools/clang/include/clang/AST/DeclObjC.h
 1915   const ObjCInterfaceDecl *getCanonicalDecl() const { return getFirstDecl(); }
 2250   const ObjCProtocolDecl *getCanonicalDecl() const { return getFirstDecl(); }
tools/clang/include/clang/AST/DeclTemplate.h
  851     return getFirstDecl();
 2006         cast<ClassTemplatePartialSpecializationDecl>(getFirstDecl());
 2843         cast<VarTemplatePartialSpecializationDecl>(getFirstDecl());
tools/clang/include/clang/AST/Redeclarable.h
  231     return getFirstDecl()->getNextRedeclaration();
tools/clang/lib/AST/ASTContext.cpp
 6291          !VD->getFirstDecl()->isOutOfLine() && VD->getFirstDecl()->hasInit();
 6291          !VD->getFirstDecl()->isOutOfLine() && VD->getFirstDecl()->hasInit();
 6300   auto *First = VD->getFirstDecl();
tools/clang/lib/AST/Decl.cpp
  559   const T *First = D->getFirstDecl();
 2101          (getFirstDecl()->isOutOfLine()
 2191   const VarDecl *First = getFirstDecl();
 3135         dyn_cast<LinkageSpecDecl>(getFirstDecl()->getDeclContext());
tools/clang/lib/AST/ExternalASTMerger.cpp
  363       if (T1->getFirstDecl() == T2->getFirstDecl())
  363       if (T1->getFirstDecl() == T2->getFirstDecl())
tools/clang/lib/AST/MicrosoftMangle.cpp
  508   FD = FD->getFirstDecl();
tools/clang/lib/AST/RecordLayoutBuilder.cpp
 3136   assert(Method == Method->getFirstDecl() &&
tools/clang/lib/CodeGen/CodeGenModule.cpp
 3803   const SomeDecl *First = D->getFirstDecl();
tools/clang/lib/Sema/SemaDecl.cpp
 1703     const FunctionDecl *First = FD->getFirstDecl();
 1709     const VarDecl *First = VD->getFirstDecl();
 2928       cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl();
 3530       } else if (OldMethod->getFirstDecl()->isExplicitlyDefaulted() && !isFriend) {
tools/clang/lib/Sema/SemaExpr.cpp
  189   const FunctionDecl *First = Cur->getFirstDecl();
tools/clang/lib/Serialization/ASTWriter.cpp
 6581   if (!TD->getFirstDecl()->isFromASTFile())
 6593   if (!TD->getFirstDecl()->isFromASTFile())
 6605   if (!TD->getFirstDecl()->isFromASTFile())
tools/clang/tools/extra/clang-tidy/bugprone/ArgumentCommentCheck.cpp
  252   Callee = Callee->getFirstDecl();