Searched refs:SDecl (Results 1 – 3 of 3) sorted by relevance
755 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) in DiagnosePropertyMismatchDeclInProtocols() local756 while (SDecl) { in DiagnosePropertyMismatchDeclInProtocols()757 for (const auto *PI : SDecl->all_referenced_protocols()) { in DiagnosePropertyMismatchDeclInProtocols()761 SDecl = SDecl->getSuperClass(); in DiagnosePropertyMismatchDeclInProtocols()1468 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) { in CollectSuperClassPropertyImplementations() local1470 while (SDecl) { in CollectSuperClassPropertyImplementations()1471 SDecl->collectPropertiesToImplement(PropMap, PO); in CollectSuperClassPropertyImplementations()1472 SDecl = SDecl->getSuperClass(); in CollectSuperClassPropertyImplementations()1509 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); in SuperClassImplementsProperty() local1510 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) in SuperClassImplementsProperty()[all …]
1052 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local1062 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); in ActOnStartClassImplementation()1063 if (SDecl && !SDecl->hasDefinition()) in ActOnStartClassImplementation()1064 SDecl = nullptr; in ActOnStartClassImplementation()1065 if (!SDecl) in ActOnStartClassImplementation()1068 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation()1072 << SDecl->getDeclName(); in ActOnStartClassImplementation()1073 Diag(SDecl->getLocation(), diag::note_previous_definition); in ActOnStartClassImplementation()1088 if (SDecl) { in ActOnStartClassImplementation()1089 IDecl->setSuperClass(SDecl); in ActOnStartClassImplementation()[all …]
1439 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, in LookupMemberExpr() local1442 SMD = dyn_cast<ObjCMethodDecl>(SDecl); in LookupMemberExpr()