Lines Matching defs:Redecl
3795 static bool redeclForcesDefMSVC(const FunctionDecl *Redecl) {
3796 if (Redecl->getStorageClass() != SC_Extern)
3799 for (const FunctionDecl *FD = Redecl->getPreviousDecl(); FD;
3807 static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
3809 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
3814 if (Redecl->isImplicit())
3817 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
3970 for (auto *Redecl : redecls()) {
3971 if (Redecl->isInlineSpecified() &&
3972 Redecl->getStorageClass() != SC_Extern)
3987 for (auto *Redecl : redecls()) {
3988 if (RedeclForcesDefC99(Redecl))