Lines Matching refs:sReturn
1312 OUStringBuffer sReturn; in QuotHTML() local
1330 case '<': sReturn.append( LT );i++;break; in QuotHTML()
1331 case '>': sReturn.append( GT );i++;break; in QuotHTML()
1332 case '\\': sReturn.append( QUOT );i++;break; in QuotHTML()
1333 case '\"': sReturn.append( APOS );i++;break; in QuotHTML()
1336 default: sReturn.append( SLASH );break; in QuotHTML()
1343 sReturn.append( QLT ); in QuotHTML()
1347 sReturn.append( QGT ); in QuotHTML()
1351 sReturn.append( QQUOT ); in QuotHTML()
1363 sReturn.append( rString.GetChar( i ) ); in QuotHTML()
1365 sReturn.append( QAMP ); in QuotHTML()
1369 sReturn.append( rString.GetChar( i ) ); in QuotHTML()
1374 rString = String( sReturn.makeStringAndClear() ); in QuotHTML()
1382 ByteString sReturn; in UnQuotData() local
1386 sReturn += "\\\\"; in UnQuotData()
1390 sReturn += "&"; in UnQuotData()
1394 sReturn += "<"; in UnQuotData()
1398 sReturn += ">"; in UnQuotData()
1402 sReturn += "\""; in UnQuotData()
1406 sReturn += "\'"; in UnQuotData()
1410 sReturn += sString.GetChar( 0 ); in UnQuotData()
1414 rString_in = String(sReturn , RTL_TEXTENCODING_UTF8 ); in UnQuotData()