Lines Matching refs:PropertyString
383 static void append_attr(std::string &PropertyString, const char *attr, in append_attr() argument
386 PropertyString += "("; in append_attr()
390 PropertyString += ", "; in append_attr()
391 PropertyString += attr; in append_attr()
395 void MigrateBlockOrFunctionPointerTypeVariable(std::string & PropertyString, in MigrateBlockOrFunctionPointerTypeVariable() argument
403 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
407 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
412 PropertyString += (*argPtr); in MigrateBlockOrFunctionPointerTypeVariable()
414 PropertyString += name; in MigrateBlockOrFunctionPointerTypeVariable()
419 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
460 std::string PropertyString = "@property "; in rewriteToObjCProperty() local
462 PropertyString += "(NS_NONATOMIC_IOSONLY"; in rewriteToObjCProperty()
465 PropertyString += "(nonatomic"; in rewriteToObjCProperty()
473 PropertyString += "(getter="; in rewriteToObjCProperty()
477 PropertyString += ", getter="; in rewriteToObjCProperty()
478 PropertyString += PropertyNameString; in rewriteToObjCProperty()
482 append_attr(PropertyString, "readonly", LParenAdded); in rewriteToObjCProperty()
492 append_attr(PropertyString, "assign", LParenAdded); in rewriteToObjCProperty()
496 append_attr(PropertyString, MemoryManagementAttr, LParenAdded); in rewriteToObjCProperty()
501 append_attr(PropertyString, MemoryManagementAttr, LParenAdded); in rewriteToObjCProperty()
504 PropertyString += ')'; in rewriteToObjCProperty()
515 PropertyString += " "; in rewriteToObjCProperty()
533 MigrateBlockOrFunctionPointerTypeVariable(PropertyString, in rewriteToObjCProperty()
538 PropertyString += TypeString; in rewriteToObjCProperty()
540 PropertyString += ' '; in rewriteToObjCProperty()
541 PropertyString += PropertyNameString; in rewriteToObjCProperty()
550 PropertyString); in rewriteToObjCProperty()