Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp835 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) { in SelectPropertyForSynthesisFromProtocols() local
836 while (SDecl) { in SelectPropertyForSynthesisFromProtocols()
837 for (const auto *PI : SDecl->all_referenced_protocols()) { in SelectPropertyForSynthesisFromProtocols()
842 SDecl = SDecl->getSuperClass(); in SelectPropertyForSynthesisFromProtocols()
1803 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) { in CollectSuperClassPropertyImplementations() local
1804 while (SDecl) { in CollectSuperClassPropertyImplementations()
1805 SDecl->collectPropertiesToImplement(PropMap); in CollectSuperClassPropertyImplementations()
1806 SDecl = SDecl->getSuperClass(); in CollectSuperClassPropertyImplementations()
1851 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); in SuperClassImplementsProperty() local
1852 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) in SuperClassImplementsProperty()
[all …]
H A DSemaDeclObjC.cpp2019 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local
2030 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); in ActOnStartClassImplementation()
2031 if (SDecl && !SDecl->hasDefinition()) in ActOnStartClassImplementation()
2032 SDecl = nullptr; in ActOnStartClassImplementation()
2033 if (!SDecl) in ActOnStartClassImplementation()
2036 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation()
2040 << SDecl->getDeclName(); in ActOnStartClassImplementation()
2041 Diag(SDecl->getLocation(), diag::note_previous_definition); in ActOnStartClassImplementation()
2058 if (SDecl) { in ActOnStartClassImplementation()
2060 Context.getObjCInterfaceType(SDecl), in ActOnStartClassImplementation()
[all …]
H A DSemaExprMember.cpp1575 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, in LookupMemberExpr() local
1578 SMD = dyn_cast<ObjCMethodDecl>(SDecl); in LookupMemberExpr()