Lines Matching refs:EnumDcl

55   bool migrateNSEnumDecl(ASTContext &Ctx, const EnumDecl *EnumDcl,
705 static bool rewriteToNSEnumDecl(const EnumDecl *EnumDcl, in rewriteToNSEnumDecl() argument
723 SourceRange R(EnumDcl->getLocStart(), EnumDcl->getLocStart()); in rewriteToNSEnumDecl()
725 SourceLocation EndOfEnumDclLoc = EnumDcl->getLocEnd(); in rewriteToNSEnumDecl()
729 SourceRange EnumDclRange(EnumDcl->getLocStart(), EndOfEnumDclLoc); in rewriteToNSEnumDecl()
745 EndOfEnumDclLoc = trans::findLocationAfterSemi(EnumDcl->getLocEnd(), NS.getASTContext(), in rewriteToNSEnumDecl()
748 SourceLocation BeginOfEnumDclLoc = EnumDcl->getLocStart(); in rewriteToNSEnumDecl()
759 const EnumDecl *EnumDcl, in rewriteToNSMacroDecl() argument
763 QualType DesignatedEnumType = EnumDcl->getIntegerType(); in rewriteToNSMacroDecl()
776 if (EnumDcl->getIntegerTypeSourceInfo()) { in rewriteToNSMacroDecl()
777 TypeSourceInfo *TSourceInfo = EnumDcl->getIntegerTypeSourceInfo(); in rewriteToNSMacroDecl()
789 EndLoc = EnumDcl->getLocStart(); in rewriteToNSMacroDecl()
790 SourceRange R(EnumDcl->getLocStart(), EndLoc); in rewriteToNSMacroDecl()
793 SourceLocation StartTypedefLoc = EnumDcl->getLocEnd(); in rewriteToNSMacroDecl()
801 const EnumDecl *EnumDcl) { in UseNSOptionsMacro() argument
805 for (auto Enumerator : EnumDcl->enumerators()) { in UseNSOptionsMacro()
909 const EnumDecl *EnumDcl, in migrateNSEnumDecl() argument
911 if (!EnumDcl->isCompleteDefinition() || EnumDcl->getIdentifier() || in migrateNSEnumDecl()
912 EnumDcl->isDeprecated()) in migrateNSEnumDecl()
928 PP.getSourceManager().getFileID(EnumDcl->getLocation()); in migrateNSEnumDecl()
941 if (EnumTy->getDecl() == EnumDcl) { in migrateNSEnumDecl()
942 bool NSOptions = UseNSOptionsMacro(PP, Ctx, EnumDcl); in migrateNSEnumDecl()
946 rewriteToNSMacroDecl(Ctx, EnumDcl, TypedefDcl, *NSAPIObj, commit, !NSOptions); in migrateNSEnumDecl()
955 bool NSOptions = UseNSOptionsMacro(PP, Ctx, EnumDcl); in migrateNSEnumDecl()
959 bool Res = rewriteToNSEnumDecl(EnumDcl, TypedefDcl, *NSAPIObj, in migrateNSEnumDecl()