Searched refs:SDecl (Results 1 – 3 of 3) sorted by relevance
846 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) { in SelectPropertyForSynthesisFromProtocols() local847 while (SDecl) { in SelectPropertyForSynthesisFromProtocols()848 for (const auto *PI : SDecl->all_referenced_protocols()) { in SelectPropertyForSynthesisFromProtocols()853 SDecl = SDecl->getSuperClass(); in SelectPropertyForSynthesisFromProtocols()1770 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) { in CollectSuperClassPropertyImplementations() local1772 while (SDecl) { in CollectSuperClassPropertyImplementations()1773 SDecl->collectPropertiesToImplement(PropMap, PO); in CollectSuperClassPropertyImplementations()1774 SDecl = SDecl->getSuperClass(); in CollectSuperClassPropertyImplementations()1819 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); in SuperClassImplementsProperty() local1820 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) in SuperClassImplementsProperty()[all …]
1987 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local1997 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); in ActOnStartClassImplementation()1998 if (SDecl && !SDecl->hasDefinition()) in ActOnStartClassImplementation()1999 SDecl = nullptr; in ActOnStartClassImplementation()2000 if (!SDecl) in ActOnStartClassImplementation()2003 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation()2007 << SDecl->getDeclName(); in ActOnStartClassImplementation()2008 Diag(SDecl->getLocation(), diag::note_previous_definition); in ActOnStartClassImplementation()2025 if (SDecl) { in ActOnStartClassImplementation()2027 Context.getObjCInterfaceType(SDecl), in ActOnStartClassImplementation()[all …]
1498 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, in LookupMemberExpr() local1501 SMD = dyn_cast<ObjCMethodDecl>(SDecl); in LookupMemberExpr()