Lines Matching refs:x

378 void VCLXGraphics::drawPixel( sal_Int32 x, sal_Int32 y ) throw(uno::RuntimeException)  in drawPixel()  argument
385 mpOutputDevice->DrawPixel( Point( x, y ) ); in drawPixel()
400 void VCLXGraphics::drawRect( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height ) throw(un… in drawRect() argument
407 mpOutputDevice->DrawRect( Rectangle( Point( x, y ), Size( width, height ) ) ); in drawRect()
411 void VCLXGraphics::drawRoundedRect( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sa… in drawRoundedRect() argument
418 …mpOutputDevice->DrawRect( Rectangle( Point( x, y ), Size( width, height ) ), nHorzRound, nVertRoun… in drawRoundedRect()
460 void VCLXGraphics::drawEllipse( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height ) throw… in drawEllipse() argument
467 mpOutputDevice->DrawEllipse( Rectangle( Point( x, y ), Size( width, height ) ) ); in drawEllipse()
471 void VCLXGraphics::drawArc( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sal_Int32 … in drawArc() argument
478 …mpOutputDevice->DrawArc( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Point… in drawArc()
482 void VCLXGraphics::drawPie( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sal_Int32 … in drawPie() argument
489 …mpOutputDevice->DrawPie( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Point… in drawPie()
493 void VCLXGraphics::drawChord( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sal_Int3… in drawChord() argument
500 …mpOutputDevice->DrawChord( Rectangle( Point( x, y ), Size( width, height ) ), Point( x1, y1 ), Poi… in drawChord()
504 void VCLXGraphics::drawGradient( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, const… in drawGradient() argument
519 mpOutputDevice->DrawGradient( Rectangle( Point( x, y ), Size( width, height ) ), aGradient ); in drawGradient()
523 void VCLXGraphics::drawText( sal_Int32 x, sal_Int32 y, const ::rtl::OUString& rText ) throw(uno::Ru… in drawText() argument
530 mpOutputDevice->DrawText( Point( x, y ), rText ); in drawText()
534 void VCLXGraphics::drawTextArray( sal_Int32 x, sal_Int32 y, const ::rtl::OUString& rText, const uno… in drawTextArray() argument
541 mpOutputDevice->DrawTextArray( Point( x, y ), rText, rLongs.getConstArray() ); in drawTextArray()
546 void VCLXGraphics::drawImage( sal_Int32 x, sal_Int32 y, sal_Int32 width, sal_Int32 height, sal_Int1… in drawImage() argument
556 mpOutputDevice->DrawImage( Point( x, y ), Size( width, height ), aImage, nStyle ); in drawImage()