Lines Matching refs:sStringBuffer
1326 OUStringBuffer sStringBuffer; in ImpWriteAutoLayoutPlaceholder() local
1350 GetMM100UnitConverter().convertMeasure(sStringBuffer, rRect.Left()); in ImpWriteAutoLayoutPlaceholder()
1351 aStr = sStringBuffer.makeStringAndClear(); in ImpWriteAutoLayoutPlaceholder()
1354 GetMM100UnitConverter().convertMeasure(sStringBuffer, rRect.Top()); in ImpWriteAutoLayoutPlaceholder()
1355 aStr = sStringBuffer.makeStringAndClear(); in ImpWriteAutoLayoutPlaceholder()
1358 GetMM100UnitConverter().convertMeasure(sStringBuffer, rRect.GetWidth()); in ImpWriteAutoLayoutPlaceholder()
1359 aStr = sStringBuffer.makeStringAndClear(); in ImpWriteAutoLayoutPlaceholder()
1362 GetMM100UnitConverter().convertMeasure(sStringBuffer, rRect.GetHeight()); in ImpWriteAutoLayoutPlaceholder()
1363 aStr = sStringBuffer.makeStringAndClear(); in ImpWriteAutoLayoutPlaceholder()
1462 OUStringBuffer sStringBuffer; in ImpWritePageMasterInfos() local
1471 GetMM100UnitConverter().convertMeasure(sStringBuffer, pInfo->GetBorderTop()); in ImpWritePageMasterInfos()
1472 sString = sStringBuffer.makeStringAndClear(); in ImpWritePageMasterInfos()
1475 GetMM100UnitConverter().convertMeasure(sStringBuffer, pInfo->GetBorderBottom()); in ImpWritePageMasterInfos()
1476 sString = sStringBuffer.makeStringAndClear(); in ImpWritePageMasterInfos()
1479 GetMM100UnitConverter().convertMeasure(sStringBuffer, pInfo->GetBorderLeft()); in ImpWritePageMasterInfos()
1480 sString = sStringBuffer.makeStringAndClear(); in ImpWritePageMasterInfos()
1483 GetMM100UnitConverter().convertMeasure(sStringBuffer, pInfo->GetBorderRight()); in ImpWritePageMasterInfos()
1484 sString = sStringBuffer.makeStringAndClear(); in ImpWritePageMasterInfos()
1487 GetMM100UnitConverter().convertMeasure(sStringBuffer, pInfo->GetWidth()); in ImpWritePageMasterInfos()
1488 sString = sStringBuffer.makeStringAndClear(); in ImpWritePageMasterInfos()
1491 GetMM100UnitConverter().convertMeasure(sStringBuffer, pInfo->GetHeight()); in ImpWritePageMasterInfos()
1492 sString = sStringBuffer.makeStringAndClear(); in ImpWritePageMasterInfos()
2823 OUStringBuffer sStringBuffer; in exportAnnotations() local
2830 …GetMM100UnitConverter().convertMeasure(sStringBuffer, static_cast<sal_Int32>( aPosition.X * 100 ) … in exportAnnotations()
2831 AddAttribute(XML_NAMESPACE_SVG, XML_X, sStringBuffer.makeStringAndClear()); in exportAnnotations()
2833 …GetMM100UnitConverter().convertMeasure(sStringBuffer, static_cast<sal_Int32>( aPosition.Y * 100 ) … in exportAnnotations()
2834 AddAttribute(XML_NAMESPACE_SVG, XML_Y, sStringBuffer.makeStringAndClear()); in exportAnnotations()
2840 …GetMM100UnitConverter().convertMeasure(sStringBuffer, static_cast<sal_Int32>( aSize.Width * 100 ) … in exportAnnotations()
2841 AddAttribute(XML_NAMESPACE_SVG, XML_WIDTH, sStringBuffer.makeStringAndClear()); in exportAnnotations()
2842 …GetMM100UnitConverter().convertMeasure(sStringBuffer, static_cast<sal_Int32>( aSize.Height * 100 )… in exportAnnotations()
2843 AddAttribute(XML_NAMESPACE_SVG, XML_HEIGHT, sStringBuffer.makeStringAndClear()); in exportAnnotations()
2860 GetMM100UnitConverter().convertDateTime(sStringBuffer, aDate, sal_True); in exportAnnotations()
2862 Characters(sStringBuffer.makeStringAndClear()); in exportAnnotations()