Home
last modified time | relevance | path

Searched refs:SDecl (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Sema/
DSemaObjCProperty.cpp755 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) in DiagnosePropertyMismatchDeclInProtocols() local
756 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() local
1470 while (SDecl) { in CollectSuperClassPropertyImplementations()
1471 SDecl->collectPropertiesToImplement(PropMap, PO); in CollectSuperClassPropertyImplementations()
1472 SDecl = SDecl->getSuperClass(); in CollectSuperClassPropertyImplementations()
1509 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); in SuperClassImplementsProperty() local
1510 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) in SuperClassImplementsProperty()
[all …]
DSemaDeclObjC.cpp1052 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local
1062 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 …]
DSemaExprMember.cpp1439 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, in LookupMemberExpr() local
1442 SMD = dyn_cast<ObjCMethodDecl>(SDecl); in LookupMemberExpr()