Lines Matching refs:SDecl
2019 ObjCInterfaceDecl *SDecl = nullptr; in ActOnStartClassImplementation() local
2029 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); in ActOnStartClassImplementation()
2030 if (SDecl && !SDecl->hasDefinition()) in ActOnStartClassImplementation()
2031 SDecl = nullptr; in ActOnStartClassImplementation()
2032 if (!SDecl) in ActOnStartClassImplementation()
2035 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) { in ActOnStartClassImplementation()
2039 << SDecl->getDeclName(); in ActOnStartClassImplementation()
2040 Diag(SDecl->getLocation(), diag::note_previous_definition); in ActOnStartClassImplementation()
2057 if (SDecl) { in ActOnStartClassImplementation()
2059 Context.getObjCInterfaceType(SDecl), in ActOnStartClassImplementation()
2076 ObjCImplementationDecl::Create(Context, CurContext, IDecl, SDecl, in ActOnStartClassImplementation()