Lines Matching refs:pContent

1069             BitmapWriteAccess* pContent = aChangedBitmap.AcquireWriteAccess();  in ModifyBitmapEx()  local
1071 if(pContent) in ModifyBitmapEx()
1075 if(pContent->HasPalette()) in ModifyBitmapEx()
1077 const sal_uInt16 nCount(pContent->GetPaletteEntryCount()); in ModifyBitmapEx()
1081 const BitmapColor& rCol = pContent->GetPaletteColor(a); in ModifyBitmapEx()
1087 pContent->SetPaletteColor(a, BitmapColor(Color(aBDest))); in ModifyBitmapEx()
1090 else if(BMP_FORMAT_24BIT_TC_BGR == pContent->GetScanlineFormat()) in ModifyBitmapEx()
1092 for(sal_uInt32 y(0L); y < (sal_uInt32)pContent->Height(); y++) in ModifyBitmapEx()
1094 Scanline pScan = pContent->GetScanline(y); in ModifyBitmapEx()
1096 for(sal_uInt32 x(0L); x < (sal_uInt32)pContent->Width(); x++) in ModifyBitmapEx()
1109 else if(BMP_FORMAT_24BIT_TC_RGB == pContent->GetScanlineFormat()) in ModifyBitmapEx()
1111 for(sal_uInt32 y(0L); y < (sal_uInt32)pContent->Height(); y++) in ModifyBitmapEx()
1113 Scanline pScan = pContent->GetScanline(y); in ModifyBitmapEx()
1115 for(sal_uInt32 x(0L); x < (sal_uInt32)pContent->Width(); x++) in ModifyBitmapEx()
1130 for(sal_uInt32 y(0L); y < (sal_uInt32)pContent->Height(); y++) in ModifyBitmapEx()
1132 for(sal_uInt32 x(0L); x < (sal_uInt32)pContent->Width(); x++) in ModifyBitmapEx()
1134 const BitmapColor aBMCol(pContent->GetColor(y, x)); in ModifyBitmapEx()
1141 pContent->SetPixel(y, x, BitmapColor(Color(aBDest))); in ModifyBitmapEx()
1146 delete pContent; in ModifyBitmapEx()
1246 BitmapWriteAccess* pContent = aContent.AcquireWriteAccess(); in createBlendFrame() local
1249 if(pContent && pAlpha) in createBlendFrame()
1255 pContent->SetPixel(0, 0, aColorTopLeft); in createBlendFrame()
1264 pContent->SetPixel(0, x, aMix); in createBlendFrame()
1272 pContent->SetPixel(0, x, aColorTopRight); in createBlendFrame()
1282 pContent->SetPixel(y, 0, aMixA); in createBlendFrame()
1291 pContent->SetPixel(y, x, aMixB); in createBlendFrame()
1300 pContent->SetPixel(y, 0, aColorBottomLeft); in createBlendFrame()
1309 pContent->SetPixel(y, x, aMix); in createBlendFrame()
1317 pContent->SetPixel(y, x, aColorBottomRight); in createBlendFrame()
1322 aContent.ReleaseAccess(pContent); in createBlendFrame()
1329 if(pContent) in createBlendFrame()
1331 aContent.ReleaseAccess(pContent); in createBlendFrame()