• Home
  • Raw
  • Download

Lines Matching refs:ToImpl

4071   ObjCCategoryImplDecl *ToImpl = Category->getImplementation();  in VisitObjCCategoryImplDecl()  local
4072 if (!ToImpl) { in VisitObjCCategoryImplDecl()
4078 ToImpl = ObjCCategoryImplDecl::Create(Importer.getToContext(), DC, in VisitObjCCategoryImplDecl()
4091 ToImpl->setLexicalDeclContext(LexicalDC); in VisitObjCCategoryImplDecl()
4094 LexicalDC->addDeclInternal(ToImpl); in VisitObjCCategoryImplDecl()
4095 Category->setImplementation(ToImpl); in VisitObjCCategoryImplDecl()
4098 Importer.Imported(D, ToImpl); in VisitObjCCategoryImplDecl()
4100 return ToImpl; in VisitObjCCategoryImplDecl()
4279 ObjCPropertyImplDecl *ToImpl in VisitObjCPropertyImplDecl() local
4282 if (!ToImpl) { in VisitObjCPropertyImplDecl()
4283 ToImpl = ObjCPropertyImplDecl::Create(Importer.getToContext(), DC, in VisitObjCPropertyImplDecl()
4290 ToImpl->setLexicalDeclContext(LexicalDC); in VisitObjCPropertyImplDecl()
4291 Importer.Imported(D, ToImpl); in VisitObjCPropertyImplDecl()
4292 LexicalDC->addDeclInternal(ToImpl); in VisitObjCPropertyImplDecl()
4296 if (D->getPropertyImplementation() != ToImpl->getPropertyImplementation()) { in VisitObjCPropertyImplDecl()
4297 Importer.ToDiag(ToImpl->getLocation(), in VisitObjCPropertyImplDecl()
4300 << (ToImpl->getPropertyImplementation() in VisitObjCPropertyImplDecl()
4311 Ivar != ToImpl->getPropertyIvarDecl()) { in VisitObjCPropertyImplDecl()
4312 Importer.ToDiag(ToImpl->getPropertyIvarDeclLoc(), in VisitObjCPropertyImplDecl()
4315 << ToImpl->getPropertyIvarDecl()->getDeclName() in VisitObjCPropertyImplDecl()
4324 Importer.Imported(D, ToImpl); in VisitObjCPropertyImplDecl()
4327 return ToImpl; in VisitObjCPropertyImplDecl()