Lines Matching refs:PropertyString
386 static void append_attr(std::string &PropertyString, const char *attr, in append_attr() argument
389 PropertyString += "("; in append_attr()
393 PropertyString += ", "; in append_attr()
394 PropertyString += attr; in append_attr()
398 void MigrateBlockOrFunctionPointerTypeVariable(std::string & PropertyString, in MigrateBlockOrFunctionPointerTypeVariable() argument
406 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
410 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
415 PropertyString += (*argPtr); in MigrateBlockOrFunctionPointerTypeVariable()
417 PropertyString += name; in MigrateBlockOrFunctionPointerTypeVariable()
422 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
463 std::string PropertyString = "@property "; in rewriteToObjCProperty() local
465 PropertyString += "(NS_NONATOMIC_IOSONLY"; in rewriteToObjCProperty()
468 PropertyString += "(nonatomic"; in rewriteToObjCProperty()
476 PropertyString += "(getter="; in rewriteToObjCProperty()
480 PropertyString += ", getter="; in rewriteToObjCProperty()
481 PropertyString += PropertyNameString; in rewriteToObjCProperty()
485 append_attr(PropertyString, "readonly", LParenAdded); in rewriteToObjCProperty()
495 append_attr(PropertyString, "assign", LParenAdded); in rewriteToObjCProperty()
499 append_attr(PropertyString, MemoryManagementAttr, LParenAdded); in rewriteToObjCProperty()
504 append_attr(PropertyString, MemoryManagementAttr, LParenAdded); in rewriteToObjCProperty()
507 PropertyString += ')'; in rewriteToObjCProperty()
518 PropertyString += " "; in rewriteToObjCProperty()
536 MigrateBlockOrFunctionPointerTypeVariable(PropertyString, in rewriteToObjCProperty()
541 PropertyString += TypeString; in rewriteToObjCProperty()
543 PropertyString += ' '; in rewriteToObjCProperty()
544 PropertyString += PropertyNameString; in rewriteToObjCProperty()
553 PropertyString); in rewriteToObjCProperty()