Lines Matching refs:append

148                 OStringBuffer( 20 ).append( sal_Int32( pRect->Left() ) )  in EnterGroup()
149 .append( "," ).append( sal_Int32( pRect->Top() ) ) in EnterGroup()
153 … OStringBuffer( 20 ).append( sal_Int32( pRect->Right() ) - sal_Int32( pRect->Left() ) ) in EnterGroup()
154 .append( "," ).append( sal_Int32( pRect->Bottom() ) - sal_Int32( pRect->Top() ) ) in EnterGroup()
386 OStringBuffer( 20 ).append( sal_Int32( nLeft ) ) in Commit()
387 .append( "," ).append( sal_Int32( nTop ) ) in Commit()
414 OStringBuffer( 20 ).append( sal_Int32( nRight ) - sal_Int32( nLeft ) ) in Commit()
415 .append( "," ).append( sal_Int32( nBottom ) - sal_Int32( nTop ) ) in Commit()
450 aPath.append( "m" ).append( nX ).append( "," ).append( nY ); in Commit()
460 aPath.append( "l" ).append( nX ).append( "," ).append( nY ); in Commit()
471 … aPath.append( "c" ).append( nX1 ).append( "," ).append( nY1 ).append( "," ) in Commit()
472 .append( nX2 ).append( "," ).append( nY2 ).append( "," ) in Commit()
473 .append( nX3 ).append( "," ).append( nY3 ); in Commit()
477 aPath.append( "nf" ); in Commit()
480 aPath.append( "ns" ); in Commit()
483 aPath.append( "x" ); in Commit()
486 aPath.append( "e" ); in Commit()
660 m_pShapeStyle->append( ";visibility:hidden" ); in Commit()
687 return OStringBuffer( 20 ).append( "shape_" ).append( sal_Int64( nId ) ).makeStringAndClear(); in ShapeIdString()
694 m_pShapeStyle->append( ";" ); in AddLineDimensions()
696 m_pShapeStyle->append( "position:absolute" ); in AddLineDimensions()
700 case 0x40: m_pShapeStyle->append( ";flip:y" ); break; in AddLineDimensions()
701 case 0x80: m_pShapeStyle->append( ";flip:x" ); break; in AddLineDimensions()
702 case 0xC0: m_pShapeStyle->append( ";flip:xy" ); break; in AddLineDimensions()
725 OStringBuffer( 20 ).append( aLeft ) in AddLineDimensions()
726 .append( "," ).append( aTop ) in AddLineDimensions()
730 OStringBuffer( 20 ).append( aRight ) in AddLineDimensions()
731 .append( "," ).append( aBottom ) in AddLineDimensions()
738 rBuffer.append( ";" ); in AddRectangleDimensions()
740 rBuffer.append( "position:absolute;" ); in AddRectangleDimensions()
744 rBuffer.append( "margin-left:" ).append( double( rRectangle.Left() ) / 20 ) in AddRectangleDimensions()
745 .append( "pt;margin-top:" ).append( double( rRectangle.Top() ) / 20 ) in AddRectangleDimensions()
746 .append( "pt;width:" ).append( double( rRectangle.Right() - rRectangle.Left() ) / 20 ) in AddRectangleDimensions()
747 .append( "pt;height:" ).append( double( rRectangle.Bottom() - rRectangle.Top() ) / 20 ) in AddRectangleDimensions()
748 .append( "pt" ); in AddRectangleDimensions()
752 rBuffer.append( "left:" ).append( rRectangle.Left() ) in AddRectangleDimensions()
753 .append( ";top:" ).append( rRectangle.Top() ) in AddRectangleDimensions()
754 .append( ";width:" ).append( rRectangle.Right() - rRectangle.Left() ) in AddRectangleDimensions()
755 .append( ";height:" ).append( rRectangle.Bottom() - rRectangle.Top() ); in AddRectangleDimensions()
815 .append( "shapetype_" ).append( sal_Int32( m_nShapeType ) ) in StartShape()