Lines Matching refs:aXRect

694     XRectangle aXRect;  in DrawServerAAForcedString()  local
704 XClipBox( mpClipRegion, &aXRect ); in DrawServerAAForcedString()
706 if( aXRect.x < 0 ) aXRect.x = 0; in DrawServerAAForcedString()
708 if( aXRect.y < 0 ) aXRect.y = 0; in DrawServerAAForcedString()
709 if( aXRect.width+aXRect.x > nWidth ) aXRect.width = nWidth-aXRect.x; in DrawServerAAForcedString()
710 if( aXRect.height+aXRect.y > nHeight ) aXRect.height = nHeight-aXRect.y; in DrawServerAAForcedString()
714 aXRect.x = 0; in DrawServerAAForcedString()
715 aXRect.y = 0; in DrawServerAAForcedString()
716 aXRect.width = nWidth; in DrawServerAAForcedString()
717 aXRect.height = nHeight; in DrawServerAAForcedString()
722 int nScreenX = m_pFrame->maGeometry.nX+aXRect.x; in DrawServerAAForcedString()
723 int nScreenY = m_pFrame->maGeometry.nY+aXRect.y; in DrawServerAAForcedString()
728 aXRect.x -= nScreenX, aXRect.width += nScreenX; in DrawServerAAForcedString()
729 if( nScreenX+aXRect.width > nScreenW ) in DrawServerAAForcedString()
730 aXRect.width = nScreenW-nScreenX; in DrawServerAAForcedString()
732 aXRect.y -= nScreenY, aXRect.height += nScreenY; in DrawServerAAForcedString()
733 if( nScreenY+aXRect.height > nScreenH ) in DrawServerAAForcedString()
734 aXRect.height = nScreenH-nScreenY; in DrawServerAAForcedString()
738 if( nXmin < aXRect.x ) nXmin = aXRect.x; in DrawServerAAForcedString()
739 if( nYmin < aXRect.y ) nYmin = aXRect.y; in DrawServerAAForcedString()
740 if( nXmax >= aXRect.x+aXRect.width ) nXmax = aXRect.x + aXRect.width - 1; in DrawServerAAForcedString()
741 if( nYmax >= aXRect.y+aXRect.height ) nYmax = aXRect.y + aXRect.height - 1; in DrawServerAAForcedString()