Lines Matching refs:nMode

172 	inline void 		ImplExecMode( sal_uLong nMode );
175 inline void ImplWriteLine( const char*, sal_uLong nMode = PS_RET );
178 void ImplWriteF( sal_Int32 nNumb, sal_uLong nCount = 3, sal_uLong nMode = PS_SPACE );
181 void ImplWriteDouble( double, sal_uLong nMode = PS_SPACE );
184 void ImplWriteLong( sal_Int32 nNumb, sal_uLong nMode = PS_SPACE );
187 void ImplWriteByte( sal_uInt8 nNumb, sal_uLong nMode = PS_SPACE );
190 void ImplWriteHexByte( sal_uInt8 nNumb, sal_uLong nMode = PS_WRAP );
193 void ImplWriteB1( sal_uInt8 nNumb, sal_uLong nMode = PS_SPACE );
195 inline void ImplWritePoint( const Point&, sal_uInt32 nMode = PS_SPACE );
196 void ImplMoveTo( const Point&, sal_uInt32 nMode = PS_SPACE );
197 void ImplLineTo( const Point&, sal_uInt32 nMode = PS_SPACE );
198 …void ImplCurveTo( const Point& rP1, const Point& rP2, const Point& rP3, sal_uInt32 nMode = PS_S…
199 void ImplTranslate( const double& fX, const double& fY, sal_uInt32 nMode = PS_RET );
200 void ImplScale( const double& fX, const double& fY, sal_uInt32 nMode = PS_RET );
222 void ImplClosePathDraw( sal_uLong nMode = PS_RET );
225 inline void ImplWriteLineColor( sal_uLong nMode = PS_RET );
226 inline void ImplWriteFillColor( sal_uLong nMode = PS_RET );
227 inline void ImplWriteTextColor( sal_uLong nMode = PS_RET );
228 inline void ImplWriteTextFillColor( sal_uLong nMode = PS_RET );
229 void ImplWriteColor( sal_uLong nMode );
1405 inline void PSWriter::ImplWritePoint( const Point& rPoint, sal_uInt32 nMode ) in ImplWritePoint() argument
1408 ImplWriteDouble( rPoint.Y(), nMode ); in ImplWritePoint()
1413 void PSWriter::ImplMoveTo( const Point& rPoint, sal_uInt32 nMode ) in ImplMoveTo() argument
1417 ImplExecMode( nMode ); in ImplMoveTo()
1422 void PSWriter::ImplLineTo( const Point& rPoint, sal_uInt32 nMode ) in ImplLineTo() argument
1426 ImplExecMode( nMode ); in ImplLineTo()
1431 void PSWriter::ImplCurveTo( const Point& rP1, const Point& rP2, const Point& rP3, sal_uInt32 nMode ) in ImplCurveTo() argument
1437 ImplExecMode( nMode ); in ImplCurveTo()
1442 void PSWriter::ImplTranslate( const double& fX, const double& fY, sal_uInt32 nMode ) in ImplTranslate() argument
1447 ImplExecMode( nMode ); in ImplTranslate()
1452 void PSWriter::ImplScale( const double& fX, const double& fY, sal_uInt32 nMode ) in ImplScale() argument
1457 ImplExecMode( nMode ); in ImplScale()
2208 void PSWriter::ImplClosePathDraw( sal_uLong nMode ) in ImplClosePathDraw() argument
2212 ImplExecMode( nMode ); in ImplClosePathDraw()
2224 inline void PSWriter::ImplWriteLineColor( sal_uLong nMode ) in ImplWriteLineColor() argument
2229 ImplWriteColor( nMode ); in ImplWriteLineColor()
2232 inline void PSWriter::ImplWriteFillColor( sal_uLong nMode ) in ImplWriteFillColor() argument
2237 ImplWriteColor( nMode ); in ImplWriteFillColor()
2240 inline void PSWriter::ImplWriteTextColor( sal_uLong nMode ) in ImplWriteTextColor() argument
2245 ImplWriteColor( nMode ); in ImplWriteTextColor()
2248 inline void PSWriter::ImplWriteTextFillColor( sal_uLong nMode ) in ImplWriteTextFillColor() argument
2253 ImplWriteColor( nMode ); in ImplWriteTextFillColor()
2259 void PSWriter::ImplWriteColor( sal_uLong nMode ) in ImplWriteColor() argument
2266 (sal_uInt8)aColor.GetBlue() * 28 + 1 ) / 65536, 3, nMode ); in ImplWriteColor()
2275 ImplExecMode( nMode ); in ImplWriteColor()
2340 inline void PSWriter::ImplExecMode( sal_uLong nMode ) in ImplExecMode() argument
2342 if ( nMode & PS_WRAP ) in ImplExecMode()
2351 if ( nMode & PS_SPACE ) in ImplExecMode()
2356 if ( nMode & PS_RET ) in ImplExecMode()
2365 inline void PSWriter::ImplWriteLine( const char* pString, sal_uLong nMode ) in ImplWriteLine() argument
2373 ImplExecMode( nMode ); in ImplWriteLine()
2474 void PSWriter::ImplWriteLong( sal_Int32 nNumber, sal_uLong nMode ) in ImplWriteLong() argument
2481 ImplExecMode( nMode ); in ImplWriteLong()
2486 void PSWriter::ImplWriteDouble( double fNumber, sal_uLong nMode ) in ImplWriteDouble() argument
2529 ImplExecMode( nMode ); in ImplWriteDouble()
2536 void PSWriter::ImplWriteF( sal_Int32 nNumber, sal_uLong nCount, sal_uLong nMode ) in ImplWriteF() argument
2571 ImplExecMode( nMode ); in ImplWriteF()
2576 void PSWriter::ImplWriteByte( sal_uInt8 nNumb, sal_uLong nMode ) in ImplWriteByte() argument
2580 ImplExecMode( nMode ); in ImplWriteByte()
2585 void PSWriter::ImplWriteHexByte( sal_uInt8 nNumb, sal_uLong nMode ) in ImplWriteHexByte() argument
2597 ImplExecMode( nMode ); in ImplWriteHexByte()
2604 void PSWriter::ImplWriteB1( sal_uInt8 nNumb, sal_uLong nMode ) in ImplWriteB1() argument
2606 ImplWriteF( 1000 * ( nNumb + 1 ) / 256 , 3, nMode ); in ImplWriteB1()