Lines Matching refs:aBuffer

279 	OUStringBuffer aBuffer;  in ExportRectangle()  local
280 mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, aRectangle.X); in ExportRectangle()
282 aBuffer.makeStringAndClear() ); in ExportRectangle()
283 mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, aRectangle.Y); in ExportRectangle()
285 aBuffer.makeStringAndClear() ); in ExportRectangle()
286 mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, aRectangle.Width); in ExportRectangle()
288 aBuffer.makeStringAndClear() ); in ExportRectangle()
289 mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, aRectangle.Height); in ExportRectangle()
291 aBuffer.makeStringAndClear() ); in ExportRectangle()
303 OUStringBuffer aBuffer; in ExportCircle() local
304 mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, aCenter.X); in ExportCircle()
306 aBuffer.makeStringAndClear() ); in ExportCircle()
307 mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, aCenter.Y); in ExportCircle()
309 aBuffer.makeStringAndClear() ); in ExportCircle()
315 mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, nRadius); in ExportCircle()
317 aBuffer.makeStringAndClear() ); in ExportCircle()
336 OUStringBuffer aBuffer; in ExportPolygon() local
338 mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, 0); in ExportPolygon()
339 mrExport.AddAttribute( XML_NAMESPACE_SVG, XML_X, aBuffer.makeStringAndClear() ); in ExportPolygon()
340 mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, 0); in ExportPolygon()
341 mrExport.AddAttribute( XML_NAMESPACE_SVG, XML_Y, aBuffer.makeStringAndClear() ); in ExportPolygon()
342 …mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, basegfx::fround(aPolygonRange.getWidth())… in ExportPolygon()
343 mrExport.AddAttribute( XML_NAMESPACE_SVG, XML_WIDTH, aBuffer.makeStringAndClear() ); in ExportPolygon()
344 …mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, basegfx::fround(aPolygonRange.getHeight()… in ExportPolygon()
345 mrExport.AddAttribute( XML_NAMESPACE_SVG, XML_HEIGHT, aBuffer.makeStringAndClear() ); in ExportPolygon()