Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaObjCProperty.cpp812 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) in DiagnosePropertyMismatchDeclInProtocols() local
813 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() local
1571 while (SDecl) { in CollectSuperClassPropertyImplementations()
1572 SDecl->collectPropertiesToImplement(PropMap, PO); in CollectSuperClassPropertyImplementations()
1573 SDecl = SDecl->getSuperClass(); in CollectSuperClassPropertyImplementations()
1618 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); in SuperClassImplementsProperty() local
1619 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) in SuperClassImplementsProperty()
[all …]
DSemaDeclObjC.cpp1893 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local
1903 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 …]
DSemaExprMember.cpp1484 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, in LookupMemberExpr() local
1487 SMD = dyn_cast<ObjCMethodDecl>(SDecl); in LookupMemberExpr()