Lines Matching refs:propImpl

899                          const ObjCPropertyImplDecl *propImpl);
918 const ObjCPropertyImplDecl *propImpl) { in PropertyImplStrategy() argument
919 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl(); in PropertyImplStrategy()
927 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in PropertyImplStrategy()
1062 static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl) { in hasTrivialGetExpr() argument
1063 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()
1218 CGM.ErrorUnsupported(propImpl, "Obj-C getter requiring atomic copy"); in generateObjCGetterBody()
1433 const ObjCPropertyImplDecl *propImpl, in generateObjCSetterBody() argument
1435 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCSetterBody()
1436 ObjCMethodDecl *setterMethod = propImpl->getSetterMethodDecl(); in generateObjCSetterBody()
1458 if (!hasTrivialSetExpr(propImpl)) { in generateObjCSetterBody()
1461 EmitStmt(propImpl->getSetterCXXAssignment()); in generateObjCSetterBody()
1469 PropertyImplStrategy strategy(CGM, propImpl); in generateObjCSetterBody()
1510 CGM.ErrorUnsupported(propImpl, "Obj-C optimized setter - NYI"); in generateObjCSetterBody()
1517 CGM.ErrorUnsupported(propImpl, "Obj-C setter requiring atomic copy"); in generateObjCSetterBody()