Searched refs:ImpDecl (Results 1 – 4 of 4) sorted by relevance
53 const ObjCImplementationDecl *ImpDecl);617 if (!ImpDecl->FindPropertyImplDecl( in ClassImplementsAllMethodsAndProperties()833 const ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface(); in migrateProtocolConformance()854 if (ClassImplementsAllMethodsAndProperties(Ctx, ImpDecl, IDecl, in migrateProtocolConformance()1035 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateMethodInstanceType() local1036 IDecl = ImpDecl->getClassInterface(); in migrateMethodInstanceType()1306 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateFactoryMethod() local1307 IDecl = ImpDecl->getClassInterface(); in migrateFactoryMethod()1868 else if (const ObjCImplementationDecl *ImpDecl = in HandleTranslationUnit() local1871 canModify(ImpDecl)) in HandleTranslationUnit()[all …]
2099 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()2100 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()2110 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()2112 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()2123 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()2143 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()2145 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()4647 PrevMethod = ImpDecl->getInstanceMethod(Sel); in ActOnMethodDeclaration()4648 ImpDecl->addInstanceMethod(ObjCMethod); in ActOnMethodDeclaration()4650 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()[all …]
751 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local752 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()753 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
3442 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,