HomeSort by: relevance | last modified time | path
    Searched refs:CatDecl (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 812 auto *CatDecl = dyn_cast<ObjCCategoryDecl>(PropDecl->getDeclContext());
815 if (!CatDecl || !CatDecl->IsClassExtension())
819 DeclContext::lookup_result R = CatDecl->getClassInterface()->lookup(ID);
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 567 if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(D)) {
568 StringRef Name = CatDecl->getName();
1034 if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CDecl))
1035 IDecl = CatDecl->getClassInterface();
1305 if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CDecl))
1306 IDecl = CatDecl->getClassInterface();
1857 if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(*D)) {
1858 if (canModify(CatDecl))
1859 migrateObjCContainerDecl(Ctx, CatDecl);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 1781 if (ObjCCategoryDecl *CATDecl = dyn_cast<ObjCCategoryDecl>(CDecl)) {
1782 for (auto *Prop : CATDecl->properties()) {
1790 for (auto *PI : CATDecl->protocols())
2393 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD))
2394 if (CatDecl->IsClassExtension())
2395 GetterMethod = IsClassProperty ? CatDecl->getClassInterface()->
2397 CatDecl->getClassInterface()->
2404 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD))
2405 if (CatDecl->IsClassExtension())
2406 SetterMethod = IsClassProperty ? CatDecl->getClassInterface()-
    [all...]
SemaDeclObjC.cpp 2930 ObjCCategoryDecl *CatDecl = CatIMPDecl->getCategoryDecl();
2931 if (!CatDecl)
2933 ObjCInterfaceDecl *IDecl = CatDecl->getClassInterface();
3015 if (ObjCCategoryImplDecl *CatDecl =
3017 CheckCategoryVsClassMethodMatches(CatDecl);
SemaCodeComplete.cpp 6996 for (ObjCCategoryDecl *CatDecl : IFace->known_categories()) {
6997 AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents,
7003 CatDecl->getReferencedProtocols();
7011 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation())
SemaDeclAttr.cpp 5582 if (auto *CatDecl = dyn_cast<ObjCCategoryDecl>(Ctx))
5583 IFace = CatDecl->getClassInterface();
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 862 if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CDecl))
863 CDecl = CatDecl->getClassInterface();
1129 void RewriteModernObjC::RewriteCategoryDecl(ObjCCategoryDecl *CatDecl) {
1130 SourceLocation LocStart = CatDecl->getBeginLoc();
1133 if (CatDecl->getIvarRBraceLoc().isValid()) {
1135 ReplaceText(CatDecl->getIvarRBraceLoc(), 1, "**/ ");
1141 for (auto *I : CatDecl->instance_properties())
1144 for (auto *I : CatDecl->instance_methods())
1146 for (auto *I : CatDecl->class_methods())
1150 ReplaceText(CatDecl->getAtEndRange().getBegin()
    [all...]
RewriteObjC.cpp 970 void RewriteObjC::RewriteCategoryDecl(ObjCCategoryDecl *CatDecl) {
971 SourceLocation LocStart = CatDecl->getBeginLoc();
976 for (auto *I : CatDecl->instance_properties())
978 for (auto *I : CatDecl->instance_methods())
980 for (auto *I : CatDecl->class_methods())
984 ReplaceText(CatDecl->getAtEndRange().getBegin(),
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 2052 auto *CatDecl =
2058 CatDecl->NextClassCategory = IDecl->getCategoryListRaw();
2060 IDecl->setCategoryListRaw(CatDecl);
2062 L->AddedObjCCategoryToInterface(CatDecl, IDecl);
2066 return CatDecl;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 3260 const ObjCCategoryDecl *CatDecl = OCD->getCategoryDecl();
3282 Elements.addBitCast(GenerateCategoryProtocolList(CatDecl), PtrTy);

Completed in 67 milliseconds