Lines Matching refs:propImpl

900                          const ObjCPropertyImplDecl *propImpl);
915 const ObjCPropertyImplDecl *propImpl) { in PropertyImplStrategy() argument
916 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl(); in PropertyImplStrategy()
924 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in PropertyImplStrategy()
1059 static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl) { in hasTrivialGetExpr() argument
1060 const Expr *getter = propImpl->getGetterCXXConstructor(); in hasTrivialGetExpr()
1115 const ObjCPropertyImplDecl *propImpl, in generateObjCGetterBody() argument
1119 if (!hasTrivialGetExpr(propImpl)) { in generateObjCGetterBody()
1122 propImpl->getGetterCXXConstructor(), in generateObjCGetterBody()
1127 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1134 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl(); in generateObjCGetterBody()
1136 ObjCMethodDecl *getterMethod = propImpl->getGetterMethodDecl(); in generateObjCGetterBody()
1138 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1141 PropertyImplStrategy strategy(CGM, propImpl); in generateObjCGetterBody()
1183 CGM.ErrorUnsupported(propImpl, "Obj-C getter requiring atomic copy"); in generateObjCGetterBody()
1402 const ObjCPropertyImplDecl *propImpl, in generateObjCSetterBody() argument
1404 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCSetterBody()
1405 ObjCMethodDecl *setterMethod = propImpl->getSetterMethodDecl(); in generateObjCSetterBody()
1409 if (!hasTrivialSetExpr(propImpl)) { in generateObjCSetterBody()
1412 EmitStmt(propImpl->getSetterCXXAssignment()); in generateObjCSetterBody()
1420 PropertyImplStrategy strategy(CGM, propImpl); in generateObjCSetterBody()
1463 CGM.ErrorUnsupported(propImpl, "Obj-C optimized setter - NYI"); in generateObjCSetterBody()
1470 CGM.ErrorUnsupported(propImpl, "Obj-C setter requiring atomic copy"); in generateObjCSetterBody()