Searched refs:SDecl (Results 1 – 3 of 3) sorted by relevance
812 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) in DiagnosePropertyMismatchDeclInProtocols() local813 while (SDecl) { in DiagnosePropertyMismatchDeclInProtocols()814 for (const auto *PI : SDecl->all_referenced_protocols()) { in DiagnosePropertyMismatchDeclInProtocols()818 SDecl = SDecl->getSuperClass(); in DiagnosePropertyMismatchDeclInProtocols()1569 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) { in CollectSuperClassPropertyImplementations() local1571 while (SDecl) { in CollectSuperClassPropertyImplementations()1572 SDecl->collectPropertiesToImplement(PropMap, PO); in CollectSuperClassPropertyImplementations()1573 SDecl = SDecl->getSuperClass(); in CollectSuperClassPropertyImplementations()1618 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); in SuperClassImplementsProperty() local1619 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) in SuperClassImplementsProperty()[all …]
1893 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local1903 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); in ActOnStartClassImplementation()1904 if (SDecl && !SDecl->hasDefinition()) in ActOnStartClassImplementation()1905 SDecl = nullptr; in ActOnStartClassImplementation()1906 if (!SDecl) in ActOnStartClassImplementation()1909 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation()1913 << SDecl->getDeclName(); in ActOnStartClassImplementation()1914 Diag(SDecl->getLocation(), diag::note_previous_definition); in ActOnStartClassImplementation()1930 if (SDecl) { in ActOnStartClassImplementation()1932 Context.getObjCInterfaceType(SDecl), in ActOnStartClassImplementation()[all …]
1484 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, in LookupMemberExpr() local1487 SMD = dyn_cast<ObjCMethodDecl>(SDecl); in LookupMemberExpr()