Lines Matching refs:propImpl
902 const ObjCPropertyImplDecl *propImpl);
917 const ObjCPropertyImplDecl *propImpl) { in PropertyImplStrategy() argument
918 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl(); in PropertyImplStrategy()
926 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in PropertyImplStrategy()
1061 static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl) { in hasTrivialGetExpr() argument
1062 const Expr *getter = propImpl->getGetterCXXConstructor(); in hasTrivialGetExpr()
1136 const ObjCPropertyImplDecl *propImpl, in generateObjCGetterBody() argument
1140 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1149 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1157 if (!hasTrivialGetExpr(propImpl)) { in generateObjCGetterBody()
1160 propImpl->getGetterCXXConstructor(), in generateObjCGetterBody()
1165 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1172 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl(); in generateObjCGetterBody()
1174 ObjCMethodDecl *getterMethod = propImpl->getGetterMethodDecl(); in generateObjCGetterBody()
1177 PropertyImplStrategy strategy(CGM, propImpl); in generateObjCGetterBody()
1219 CGM.ErrorUnsupported(propImpl, "Obj-C getter requiring atomic copy"); in generateObjCGetterBody()
1437 const ObjCPropertyImplDecl *propImpl, in generateObjCSetterBody() argument
1439 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCSetterBody()
1440 ObjCMethodDecl *setterMethod = propImpl->getSetterMethodDecl(); in generateObjCSetterBody()
1462 if (!hasTrivialSetExpr(propImpl)) { in generateObjCSetterBody()
1465 EmitStmt(propImpl->getSetterCXXAssignment()); in generateObjCSetterBody()
1473 PropertyImplStrategy strategy(CGM, propImpl); in generateObjCSetterBody()
1516 CGM.ErrorUnsupported(propImpl, "Obj-C optimized setter - NYI"); in generateObjCSetterBody()
1523 CGM.ErrorUnsupported(propImpl, "Obj-C setter requiring atomic copy"); in generateObjCSetterBody()