Lines Matching refs:propImpl
897 const ObjCPropertyImplDecl *propImpl);
912 const ObjCPropertyImplDecl *propImpl) { in PropertyImplStrategy() argument
913 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl(); in PropertyImplStrategy()
921 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in PropertyImplStrategy()
1055 static bool hasTrivialGetExpr(const ObjCPropertyImplDecl *propImpl) { in hasTrivialGetExpr() argument
1056 const Expr *getter = propImpl->getGetterCXXConstructor(); in hasTrivialGetExpr()
1111 const ObjCPropertyImplDecl *propImpl, in generateObjCGetterBody() argument
1115 if (!hasTrivialGetExpr(propImpl)) { in generateObjCGetterBody()
1118 propImpl->getGetterCXXConstructor(), in generateObjCGetterBody()
1123 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1130 const ObjCPropertyDecl *prop = propImpl->getPropertyDecl(); in generateObjCGetterBody()
1132 ObjCMethodDecl *getterMethod = propImpl->getGetterMethodDecl(); in generateObjCGetterBody()
1134 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCGetterBody()
1137 PropertyImplStrategy strategy(CGM, propImpl); in generateObjCGetterBody()
1181 CGM.ErrorUnsupported(propImpl, "Obj-C getter requiring atomic copy"); in generateObjCGetterBody()
1400 const ObjCPropertyImplDecl *propImpl, in generateObjCSetterBody() argument
1402 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); in generateObjCSetterBody()
1403 ObjCMethodDecl *setterMethod = propImpl->getSetterMethodDecl(); in generateObjCSetterBody()
1407 if (!hasTrivialSetExpr(propImpl)) { in generateObjCSetterBody()
1410 EmitStmt(propImpl->getSetterCXXAssignment()); in generateObjCSetterBody()
1418 PropertyImplStrategy strategy(CGM, propImpl); in generateObjCSetterBody()
1461 CGM.ErrorUnsupported(propImpl, "Obj-C optimized setter - NYI"); in generateObjCSetterBody()
1468 CGM.ErrorUnsupported(propImpl, "Obj-C setter requiring atomic copy"); in generateObjCSetterBody()