Searched refs:ImpDecl (Results 1 – 4 of 4) sorted by relevance
53 const ObjCImplementationDecl *ImpDecl);600 const ObjCImplementationDecl *ImpDecl, in ClassImplementsAllMethodsAndProperties() argument617 if (!ImpDecl->FindPropertyImplDecl( in ClassImplementsAllMethodsAndProperties()644 DeclContext::lookup_result R = ImpDecl->lookup(MD->getDeclName()); in ClassImplementsAllMethodsAndProperties()842 const ObjCImplementationDecl *ImpDecl) { in migrateProtocolConformance() argument843 const ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface(); in migrateProtocolConformance()864 if (ClassImplementsAllMethodsAndProperties(Ctx, ImpDecl, IDecl, in migrateProtocolConformance()1045 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateMethodInstanceType() local1046 IDecl = ImpDecl->getClassInterface(); in migrateMethodInstanceType()1316 else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl)) in migrateFactoryMethod() local[all …]
2018 void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, in CheckImplementationIvars() argument2021 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()2022 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()2032 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()2034 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()2045 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()2046 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); in CheckImplementationIvars()2065 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()2067 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()4402 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) { in ActOnMethodDeclaration() local[all …]
722 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local723 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()724 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
3086 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,