Lines Matching refs:aRectSrc

954 			Rectangle		aRectSrc( rRectSrc );  in CopyPixel()  local
1014 aRectSrc.Intersection( Rectangle( Point(), aCopySizePix ) ); in CopyPixel()
1016 if( !aRectSrc.IsEmpty() ) in CopyPixel()
1026 const long nWidth = Min( aRectSrc.GetWidth(), aRectDst.GetWidth() ); in CopyPixel()
1027 const long nHeight = Min( aRectSrc.GetHeight(), aRectDst.GetHeight() ); in CopyPixel()
1028 const long nSrcEndX = aRectSrc.Left() + nWidth; in CopyPixel()
1029 const long nSrcEndY = aRectSrc.Top() + nHeight; in CopyPixel()
1043 for( long nSrcY = aRectSrc.Top(); nSrcY < nSrcEndY; nSrcY++, nDstY++ ) in CopyPixel()
1044 … for( long nSrcX = aRectSrc.Left(), nDstX = aRectDst.Left(); nSrcX < nSrcEndX; nSrcX++, nDstX++ ) in CopyPixel()
1051 for( long nSrcY = aRectSrc.Top(); nSrcY < nSrcEndY; nSrcY++, nDstY++ ) in CopyPixel()
1052 … for( long nSrcX = aRectSrc.Left(), nDstX = aRectDst.Left(); nSrcX < nSrcEndX; nSrcX++, nDstX++ ) in CopyPixel()
1056 for( long nSrcY = aRectSrc.Top(); nSrcY < nSrcEndY; nSrcY++, nDstY++ ) in CopyPixel()
1057 … for( long nSrcX = aRectSrc.Left(), nDstX = aRectDst.Left(); nSrcX < nSrcEndX; nSrcX++, nDstX++ ) in CopyPixel()
1070 Rectangle aRectSrc( rRectSrc ); in CopyPixel() local
1072 aRectSrc.Intersection( Rectangle( Point(), aSizePix ) ); in CopyPixel()
1074 if( !aRectSrc.IsEmpty() && ( aRectSrc != aRectDst ) ) in CopyPixel()
1080 const long nWidth = Min( aRectSrc.GetWidth(), aRectDst.GetWidth() ); in CopyPixel()
1081 const long nHeight = Min( aRectSrc.GetHeight(), aRectDst.GetHeight() ); in CopyPixel()
1082 const long nSrcX = aRectSrc.Left(); in CopyPixel()
1083 const long nSrcY = aRectSrc.Top(); in CopyPixel()