Home
last modified time | relevance | path

Searched refs:ImplMap (Results 1 – 4 of 4) sorted by relevance

/AOO42X/main/svtools/source/filter/wmf/ !
H A Dwinmtf.cxx413 Point WinMtfOutput::ImplMap( const Point& rPt ) in ImplMap() function in WinMtfOutput
491 Size WinMtfOutput::ImplMap( const Size& rSz ) in ImplMap() function in WinMtfOutput
546 Rectangle WinMtfOutput::ImplMap( const Rectangle& rRect ) in ImplMap() function in WinMtfOutput
548 return Rectangle( ImplMap( rRect.TopLeft() ), ImplMap( rRect.GetSize() ) ); in ImplMap()
553 void WinMtfOutput::ImplMap( Font& rFont ) in ImplMap() function in WinMtfOutput
558 Size aFontSize = ImplMap ( rFont.GetSize() ); in ImplMap()
571 Polygon& WinMtfOutput::ImplMap( Polygon& rPolygon ) in ImplMap() function in WinMtfOutput
576 rPolygon[ i ] = ImplMap( rPolygon[ i ] ); in ImplMap()
583 PolyPolygon& WinMtfOutput::ImplMap( PolyPolygon& rPolyPolygon ) in ImplMap() function in WinMtfOutput
586 for ( sal_uInt16 i = 0; i < nPolys; ImplMap( rPolyPolygon[ i++ ] ) ) ; in ImplMap()
[all …]
H A Dwinmtf.hxx587 Point ImplMap( const Point& rPt );
588 Size ImplMap( const Size& rSz );
589 Rectangle ImplMap( const Rectangle& rRectangle );
590 void ImplMap( Font& rFont );
591 Polygon& ImplMap( Polygon& rPolygon );
592 PolyPolygon& ImplMap( PolyPolygon& rPolyPolygon );
/AOO42X/main/filter/source/svg/ !
H A Dsvgwriter.cxx413 long SVGActionWriter::ImplMap( sal_Int32 nVal ) const in ImplMap() function in SVGActionWriter
417 return( ImplMap( aSz, aSz ).Width() ); in ImplMap()
422 Point& SVGActionWriter::ImplMap( const Point& rPt, Point& rDstPt ) const in ImplMap() function in SVGActionWriter
429 Size& SVGActionWriter::ImplMap( const Size& rSz, Size& rDstSz ) const in ImplMap() function in SVGActionWriter
436 Rectangle& SVGActionWriter::ImplMap( const Rectangle& rRect, Rectangle& rDstRect ) const in ImplMap() function in SVGActionWriter
441 return( rDstRect = Rectangle( ImplMap( aTL, aTL ), ImplMap( aSz, aSz ) ) ); in ImplMap()
447 Polygon& SVGActionWriter::ImplMap( const Polygon& rPoly, Polygon& rDstPoly ) const in ImplMap() function in SVGActionWriter
453 ImplMap( rPoly[ i ], rDstPoly[ i ] ); in ImplMap()
462 PolyPolygon& SVGActionWriter::ImplMap( const PolyPolygon& rPolyPoly, PolyPolygon& rDstPolyPoly ) co… in ImplMap() function in SVGActionWriter
470 rDstPolyPoly.Insert( ImplMap( rPolyPoly[ i ], aPoly ) ); in ImplMap()
[all …]
H A Dsvgwriter.hxx194 long ImplMap( sal_Int32 nVal ) const;
195 Point& ImplMap( const Point& rPt, Point& rDstPt ) const;
196 Size& ImplMap( const Size& rSz, Size& rDstSz ) const;
197 Rectangle& ImplMap( const Rectangle& rRect, Rectangle& rDstRect ) const;
198 Polygon& ImplMap( const Polygon& rPoly, Polygon& rDstPoly ) const;
199 … PolyPolygon& ImplMap( const PolyPolygon& rPolyPoly, PolyPolygon& rDstPolyPoly ) const;