Lines Matching refs:propImpl

898                          const ObjCPropertyImplDecl *propImpl);
913 const ObjCPropertyImplDecl *propImpl) { in PropertyImplStrategy() argument
914 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl(); in PropertyImplStrategy()
922 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in PropertyImplStrategy()
1056 static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl) { in hasTrivialGetExpr() argument
1057 const Expr *getter = propImpl->getGetterCXXConstructor(); in hasTrivialGetExpr()
1112 const ObjCPropertyImplDecl *propImpl, in generateObjCGetterBody() argument
1116 if (!hasTrivialGetExpr(propImpl)) { in generateObjCGetterBody()
1119 propImpl->getGetterCXXConstructor(), in generateObjCGetterBody()
1124 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1131 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl(); in generateObjCGetterBody()
1133 ObjCMethodDecl *getterMethod = propImpl->getGetterMethodDecl(); in generateObjCGetterBody()
1135 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1138 PropertyImplStrategy strategy(CGM, propImpl); in generateObjCGetterBody()
1182 CGM.ErrorUnsupported(propImpl, "Obj-C getter requiring atomic copy"); in generateObjCGetterBody()
1401 const ObjCPropertyImplDecl *propImpl, in generateObjCSetterBody() argument
1403 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCSetterBody()
1404 ObjCMethodDecl *setterMethod = propImpl->getSetterMethodDecl(); in generateObjCSetterBody()
1408 if (!hasTrivialSetExpr(propImpl)) { in generateObjCSetterBody()
1411 EmitStmt(propImpl->getSetterCXXAssignment()); in generateObjCSetterBody()
1419 PropertyImplStrategy strategy(CGM, propImpl); in generateObjCSetterBody()
1462 CGM.ErrorUnsupported(propImpl, "Obj-C optimized setter - NYI"); in generateObjCSetterBody()
1469 CGM.ErrorUnsupported(propImpl, "Obj-C setter requiring atomic copy"); in generateObjCSetterBody()