Home
last modified time | relevance | path

Searched refs:CatDecl (Results 1 – 10 of 10) sorted by relevance

/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaObjCProperty.cpp2389 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2390 if (CatDecl->IsClassExtension()) in ProcessPropertyDecl()
2391 GetterMethod = IsClassProperty ? CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2393 CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2400 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2401 if (CatDecl->IsClassExtension()) in ProcessPropertyDecl()
2402 SetterMethod = IsClassProperty ? CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2404 CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2412 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) { in ProcessPropertyDecl() local
2413 auto *ExistingGetter = CatDecl->getClassInterface()->lookupMethod( in ProcessPropertyDecl()
[all …]
H A DSemaDeclObjC.cpp2945 ObjCCategoryDecl *CatDecl = CatIMPDecl->getCategoryDecl(); in CheckCategoryVsClassMethodMatches() local
2946 if (!CatDecl) in CheckCategoryVsClassMethodMatches()
2948 ObjCInterfaceDecl *IDecl = CatDecl->getClassInterface(); in CheckCategoryVsClassMethodMatches()
3030 if (ObjCCategoryImplDecl *CatDecl = in ImplMethodsVsClassMethods() local
3032 CheckCategoryVsClassMethodMatches(CatDecl); in ImplMethodsVsClassMethods()
H A DSemaCodeComplete.cpp7537 for (ObjCCategoryDecl *CatDecl : IFace->known_categories()) { in AddObjCMethods()
7538 AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents, in AddObjCMethods()
7544 CatDecl->getReferencedProtocols(); in AddObjCMethods()
7552 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation()) in AddObjCMethods()
H A DSemaDeclAttr.cpp6127 if (auto *CatDecl = dyn_cast<ObjCCategoryDecl>(Ctx)) in handleObjCDesignatedInitializer() local
6128 IFace = CatDecl->getClassInterface(); in handleObjCDesignatedInitializer()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp813 auto *CatDecl = dyn_cast<ObjCCategoryDecl>(PropDecl->getDeclContext()); in findShadowedPropertyDecl() local
816 if (!CatDecl || !CatDecl->IsClassExtension()) in findShadowedPropertyDecl()
820 DeclContext::lookup_result R = CatDecl->getClassInterface()->lookup(ID); in findShadowedPropertyDecl()
/openbsd/gnu/llvm/clang/lib/ARCMigrate/
H A DObjCMT.cpp566 if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(D)) { in IsCategoryNameWithDeprecatedSuffix() local
567 StringRef Name = CatDecl->getName(); in IsCategoryNameWithDeprecatedSuffix()
1033 if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CDecl)) in migrateMethodInstanceType() local
1034 IDecl = CatDecl->getClassInterface(); in migrateMethodInstanceType()
1304 if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CDecl)) in migrateFactoryMethod() local
1305 IDecl = CatDecl->getClassInterface(); in migrateFactoryMethod()
1853 if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(*D)) { in HandleTranslationUnit() local
1854 if (canModify(CatDecl)) in HandleTranslationUnit()
1855 migrateObjCContainerDecl(Ctx, CatDecl); in HandleTranslationUnit()
/openbsd/gnu/llvm/clang/lib/AST/
H A DDeclObjC.cpp2145 auto *CatDecl = in Create() local
2151 CatDecl->NextClassCategory = IDecl->getCategoryListRaw(); in Create()
2153 IDecl->setCategoryListRaw(CatDecl); in Create()
2155 L->AddedObjCCategoryToInterface(CatDecl, IDecl); in Create()
2159 return CatDecl; in Create()
/openbsd/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp864 CDecl = CatDecl->getClassInterface(); in getIvarAccessString()
1131 SourceLocation LocStart = CatDecl->getBeginLoc(); in RewriteCategoryDecl()
1134 if (CatDecl->getIvarRBraceLoc().isValid()) { in RewriteCategoryDecl()
1136 ReplaceText(CatDecl->getIvarRBraceLoc(), 1, "**/ "); in RewriteCategoryDecl()
1142 for (auto *I : CatDecl->instance_properties()) in RewriteCategoryDecl()
1145 for (auto *I : CatDecl->instance_methods()) in RewriteCategoryDecl()
1147 for (auto *I : CatDecl->class_methods()) in RewriteCategoryDecl()
1151 ReplaceText(CatDecl->getAtEndRange().getBegin(), in RewriteCategoryDecl()
6620 StringRef CatName = CatDecl->getName(); in Write_category_t()
7354 Result += CatDecl->getName(); in RewriteCategorySetupInitHook()
[all …]
H A DRewriteObjC.cpp970 void RewriteObjC::RewriteCategoryDecl(ObjCCategoryDecl *CatDecl) { in RewriteCategoryDecl() argument
971 SourceLocation LocStart = CatDecl->getBeginLoc(); in RewriteCategoryDecl()
976 for (auto *I : CatDecl->instance_properties()) in RewriteCategoryDecl()
978 for (auto *I : CatDecl->instance_methods()) in RewriteCategoryDecl()
980 for (auto *I : CatDecl->class_methods()) in RewriteCategoryDecl()
984 ReplaceText(CatDecl->getAtEndRange().getBegin(), in RewriteCategoryDecl()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGObjCGNU.cpp3345 const ObjCCategoryDecl *CatDecl = OCD->getCategoryDecl(); in GenerateCategory() local
3367 Elements.addBitCast(GenerateCategoryProtocolList(CatDecl), PtrTy); in GenerateCategory()