Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp846 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) { in SelectPropertyForSynthesisFromProtocols() local
847 while (SDecl) { in SelectPropertyForSynthesisFromProtocols()
848 for (const auto *PI : SDecl->all_referenced_protocols()) { in SelectPropertyForSynthesisFromProtocols()
853 SDecl = SDecl->getSuperClass(); in SelectPropertyForSynthesisFromProtocols()
1770 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) { in CollectSuperClassPropertyImplementations() local
1772 while (SDecl) { in CollectSuperClassPropertyImplementations()
1773 SDecl->collectPropertiesToImplement(PropMap, PO); in CollectSuperClassPropertyImplementations()
1774 SDecl = SDecl->getSuperClass(); in CollectSuperClassPropertyImplementations()
1819 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); in SuperClassImplementsProperty() local
1820 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) in SuperClassImplementsProperty()
[all …]
H A DSemaDeclObjC.cpp1987 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local
1997 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); in ActOnStartClassImplementation()
1998 if (SDecl && !SDecl->hasDefinition()) in ActOnStartClassImplementation()
1999 SDecl = nullptr; in ActOnStartClassImplementation()
2000 if (!SDecl) in ActOnStartClassImplementation()
2003 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation()
2007 << SDecl->getDeclName(); in ActOnStartClassImplementation()
2008 Diag(SDecl->getLocation(), diag::note_previous_definition); in ActOnStartClassImplementation()
2025 if (SDecl) { in ActOnStartClassImplementation()
2027 Context.getObjCInterfaceType(SDecl), in ActOnStartClassImplementation()
[all …]
H A DSemaExprMember.cpp1498 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, in LookupMemberExpr() local
1501 SMD = dyn_cast<ObjCMethodDecl>(SDecl); in LookupMemberExpr()