Lines Matching full:redecl
2736 static bool redeclForcesDefMSVC(const FunctionDecl *Redecl) {
2737 if (Redecl->getStorageClass() != SC_Extern)
2740 for (const FunctionDecl *FD = Redecl->getPreviousDecl(); FD;
2748 static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
2750 if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
2755 if (Redecl->isImplicit())
2758 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
2896 for (auto Redecl : redecls()) {
2897 if (Redecl->isInlineSpecified() &&
2898 Redecl->getStorageClass() != SC_Extern)
2913 for (auto Redecl : redecls()) {
2914 if (RedeclForcesDefC99(Redecl))