Searched refs:SDecl (Results 1 – 3 of 3) sorted by relevance
850 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) { in SelectPropertyForSynthesisFromProtocols() local851 while (SDecl) { in SelectPropertyForSynthesisFromProtocols()852 for (const auto *PI : SDecl->all_referenced_protocols()) { in SelectPropertyForSynthesisFromProtocols()857 SDecl = SDecl->getSuperClass(); in SelectPropertyForSynthesisFromProtocols()1825 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) { in CollectSuperClassPropertyImplementations() local1827 while (SDecl) { in CollectSuperClassPropertyImplementations()1828 SDecl->collectPropertiesToImplement(PropMap, PO); in CollectSuperClassPropertyImplementations()1829 SDecl = SDecl->getSuperClass(); in CollectSuperClassPropertyImplementations()1874 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); in SuperClassImplementsProperty() local1875 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) in SuperClassImplementsProperty()[all …]
2003 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local2013 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); in ActOnStartClassImplementation()2014 if (SDecl && !SDecl->hasDefinition()) in ActOnStartClassImplementation()2015 SDecl = nullptr; in ActOnStartClassImplementation()2016 if (!SDecl) in ActOnStartClassImplementation()2019 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation()2023 << SDecl->getDeclName(); in ActOnStartClassImplementation()2024 Diag(SDecl->getLocation(), diag::note_previous_definition); in ActOnStartClassImplementation()2041 if (SDecl) { in ActOnStartClassImplementation()2043 Context.getObjCInterfaceType(SDecl), in ActOnStartClassImplementation()[all …]
1512 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, in LookupMemberExpr() local1515 SMD = dyn_cast<ObjCMethodDecl>(SDecl); in LookupMemberExpr()