Lines Matching refs:aLayout

188     rendering::IntegerBitmapLayout aLayout;  in checkCanvasBitmap()  local
189 …uno::Sequence<sal_Int8> aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,1,1)); in checkCanvasBitmap()
193 test( aLayout.ScanLines == 1, in checkCanvasBitmap()
195 test( aLayout.ScanLineBytes == (nExpectedBitsPerPixel+7)/8, in checkCanvasBitmap()
197 test( aLayout.ScanLineStride == (nExpectedBitsPerPixel+7)/8 || in checkCanvasBitmap()
198 aLayout.ScanLineStride == -(nExpectedBitsPerPixel+7)/8, in checkCanvasBitmap()
200 test( aLayout.PlaneStride == 0, in checkCanvasBitmap()
203 test( aLayout.ColorSpace.is(), in checkCanvasBitmap()
206 test( aLayout.Palette.is() == (nDepth <= 8), in checkCanvasBitmap()
209 uno::Sequence<sal_Int8> aPixelData2 = xBmp->getPixel( aLayout, geometry::IntegerPoint2D(0,0) ); in checkCanvasBitmap()
214 aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,200,1)); in checkCanvasBitmap()
215 test( aLayout.ScanLines == 1, in checkCanvasBitmap()
217 test( aLayout.ScanLineBytes == (200*nExpectedBitsPerPixel+7)/8, in checkCanvasBitmap()
219 test( aLayout.ScanLineStride == (200*nExpectedBitsPerPixel+7)/8 || in checkCanvasBitmap()
220 aLayout.ScanLineStride == -(200*nExpectedBitsPerPixel+7)/8, in checkCanvasBitmap()
295 aPixel4 = xBmp->getPixel( aLayout, geometry::IntegerPoint2D(5,0) ); in checkCanvasBitmap()
339 rendering::IntegerBitmapLayout aLayout; in checkBitmapImport() local
340 …uno::Sequence<sal_Int8> aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,1,1)); in checkBitmapImport()
344 test( aLayout.ScanLines == 1, in checkBitmapImport()
346 test( aLayout.ScanLineBytes == (nExpectedBitsPerPixel+7)/8, in checkBitmapImport()
348 test( aLayout.ScanLineStride == (nExpectedBitsPerPixel+7)/8 || in checkBitmapImport()
349 aLayout.ScanLineStride == -(nExpectedBitsPerPixel+7)/8, in checkBitmapImport()
351 test( aLayout.PlaneStride == 0, in checkBitmapImport()
354 test( aLayout.ColorSpace.is(), in checkBitmapImport()
357 test( aLayout.Palette.is() == (nDepth <= 8), in checkBitmapImport()
360 uno::Sequence<sal_Int8> aPixelData2 = xBmp->getPixel( aLayout, geometry::IntegerPoint2D(0,0) ); in checkBitmapImport()
365 aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,200,1)); in checkBitmapImport()
366 test( aLayout.ScanLines == 1, in checkBitmapImport()
368 test( aLayout.ScanLineBytes == (200*nExpectedBitsPerPixel+7)/8, in checkBitmapImport()
370 test( aLayout.ScanLineStride == (200*nExpectedBitsPerPixel+7)/8 || in checkBitmapImport()
371 aLayout.ScanLineStride == -(200*nExpectedBitsPerPixel+7)/8, in checkBitmapImport()
446 aPixel4 = xBmp->getPixel( aLayout, geometry::IntegerPoint2D(5,0) ); in checkBitmapImport()
543 rendering::IntegerBitmapLayout aLayout( maLayout ); in getMemoryLayout() local
547 aLayout.ScanLines = maSize.Height; in getMemoryLayout()
548 aLayout.ScanLineBytes = in getMemoryLayout()
549 aLayout.ScanLineStride= nScanlineLen; in getMemoryLayout()
550 aLayout.Palette = getPalette(); in getMemoryLayout()
551 aLayout.ColorSpace.set( this ); in getMemoryLayout()
553 return aLayout; in getMemoryLayout()