Lines Matching refs:x
93 double x; member
303 void rectangle(cairo_t *cr, double x, double y, double width, double height) in rectangle() argument
304 { (*mp_rectangle)(cr, x, y, width, height); } in rectangle()
483 aGlyph.x = aPos.X(); in DrawCairoAAFontString()
706 if( aXRect.x < 0 ) aXRect.x = 0; in DrawServerAAForcedString()
709 if( aXRect.width+aXRect.x > nWidth ) aXRect.width = nWidth-aXRect.x; in DrawServerAAForcedString()
714 aXRect.x = 0; in DrawServerAAForcedString()
722 int nScreenX = m_pFrame->maGeometry.nX+aXRect.x; in DrawServerAAForcedString()
728 aXRect.x -= nScreenX, aXRect.width += nScreenX; in DrawServerAAForcedString()
738 if( nXmin < aXRect.x ) nXmin = aXRect.x; in DrawServerAAForcedString()
740 if( nXmax >= aXRect.x+aXRect.width ) nXmax = aXRect.x + aXRect.width - 1; in DrawServerAAForcedString()
764 int x = 0, y = 0; in DrawServerAAForcedString() local
766 XGetGeometry( pDisplay, hDrawable_, &aRoot, &x, &y, &w, &h, &bw, &d ); in DrawServerAAForcedString()
767 XTranslateCoordinates( pDisplay, hDrawable_, aRoot, 0, 0, &x, &y, &aRoot ); in DrawServerAAForcedString()
768 if( nXmin + x < 0 ) // clip on left screen edge in DrawServerAAForcedString()
769 nXmin += x-nXmin; in DrawServerAAForcedString()
776 if( nXmax + x >= nScreenW ) // clip on right screen edge in DrawServerAAForcedString()
777 nXmax -= (nXmax + x - nScreenW)+1; in DrawServerAAForcedString()
838 for( int x = pRawBitmap->mnWidth; (--x >= 0) && (p22 > pDst); ++pSrc ) in DrawServerAAForcedString() local