Lines Matching defs:Redecl
3765 static bool redeclForcesDefMSVC(const FunctionDecl *Redecl) {
3766 if (Redecl->getStorageClass() != SC_Extern)
3769 for (const FunctionDecl *FD = Redecl->getPreviousDecl(); FD;
3777 static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
3779 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
3784 if (Redecl->isImplicit())
3787 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
3940 for (auto *Redecl : redecls()) {
3941 if (Redecl->isInlineSpecified() &&
3942 Redecl->getStorageClass() != SC_Extern)
3957 for (auto *Redecl : redecls()) {
3958 if (RedeclForcesDefC99(Redecl))