Searched refs:SDecl (Results 1 – 3 of 3) sorted by relevance
836 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) { in SelectPropertyForSynthesisFromProtocols() local837 while (SDecl) { in SelectPropertyForSynthesisFromProtocols()838 for (const auto *PI : SDecl->all_referenced_protocols()) { in SelectPropertyForSynthesisFromProtocols()843 SDecl = SDecl->getSuperClass(); in SelectPropertyForSynthesisFromProtocols()1814 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) { in CollectSuperClassPropertyImplementations() local1815 while (SDecl) { in CollectSuperClassPropertyImplementations()1816 SDecl->collectPropertiesToImplement(PropMap); in CollectSuperClassPropertyImplementations()1817 SDecl = SDecl->getSuperClass(); in CollectSuperClassPropertyImplementations()1862 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); in SuperClassImplementsProperty() local1863 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) in SuperClassImplementsProperty()[all …]
2022 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local2033 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); in ActOnStartClassImplementation()2034 if (SDecl && !SDecl->hasDefinition()) in ActOnStartClassImplementation()2035 SDecl = nullptr; in ActOnStartClassImplementation()2036 if (!SDecl) in ActOnStartClassImplementation()2039 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation()2043 << SDecl->getDeclName(); in ActOnStartClassImplementation()2044 Diag(SDecl->getLocation(), diag::note_previous_definition); in ActOnStartClassImplementation()2061 if (SDecl) { in ActOnStartClassImplementation()2063 Context.getObjCInterfaceType(SDecl), in ActOnStartClassImplementation()[all …]
1510 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, in LookupMemberExpr() local1513 SMD = dyn_cast<ObjCMethodDecl>(SDecl); in LookupMemberExpr()