Lines Matching refs:SDecl
2019 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()
2077 ObjCImplementationDecl::Create(Context, SemaRef.CurContext, IDecl, SDecl, in ActOnStartClassImplementation()