| /external/pdfium/core/src/fxge/win32/ |
| fx_win32_dwrite.cpp | 94 CDwGdiTextRenderer(CFX_DIBitmap* pBitmap, 165 FX_BOOL CDWriteExt::DwCreateRenderingTarget(CFX_DIBitmap* pBitmap, 167 if (pBitmap->GetFormat() > FXDIB_Argb) { 180 NULL, pBitmap->GetWidth(), pBitmap->GetHeight(), &pBitmapRenderTarget); 195 new CDwGdiTextRenderer(pBitmap, pBitmapRenderTarget, pRenderingParams); 362 CFX_DIBitmap* pBitmap, 365 : pBitmap_(pBitmap),
|
| /external/pdfium/xfa/src/fwl/src/lightwidget/ |
| tooltipctrl.cpp | 61 FWL_ERR CFWL_ToolTip::SetToolTipIcon(CFX_DIBitmap* pBitmap) {
62 m_tooltipData.m_pBitmap = pBitmap;
|
| picturebox.cpp | 33 FWL_ERR CFWL_PictureBox::SetPicture(CFX_DIBitmap* pBitmap) {
34 m_PictureBoxDP.m_pBitmap = pBitmap;
|
| /external/pdfium/xfa/src/fxbarcode/ |
| BC_BarCode.cpp | 249 CFX_WideString CBC_Code39::Decode(CFX_DIBitmap* pBitmap, int32_t& e) {
250 CBC_BufferedImageLuminanceSource source(pBitmap);
352 CFX_WideString CBC_Codabar::Decode(CFX_DIBitmap* pBitmap, int32_t& e) {
353 CBC_BufferedImageLuminanceSource source(pBitmap);
429 CFX_WideString CBC_Code128::Decode(CFX_DIBitmap* pBitmap, int32_t& e) {
430 CBC_BufferedImageLuminanceSource source(pBitmap);
512 CFX_WideString CBC_EAN8::Decode(CFX_DIBitmap* pBitmap, int32_t& e) {
513 CBC_BufferedImageLuminanceSource source(pBitmap);
596 CFX_WideString CBC_EAN13::Decode(CFX_DIBitmap* pBitmap, int32_t& e) {
597 CBC_BufferedImageLuminanceSource source(pBitmap);
[all...] |
| BC_BufferedImageLuminanceSource.cpp | 111 CFX_DIBitmap* pBitmap)
113 m_pBitmap = pBitmap->Clone();
|
| /external/pdfium/core/src/fxge/apple/ |
| apple_int.h | 125 FX_BOOL GetDIBits(CFX_DIBitmap* pBitmap, 131 FX_BOOL SetDIBits(const CFX_DIBSource* pBitmap, 139 FX_BOOL StretchDIBits(const CFX_DIBSource* pBitmap, 150 FX_BOOL StartDIBits(const CFX_DIBSource* pBitmap,
|
| /external/pdfium/xfa/include/fwl/lightwidget/ |
| tooltipctrl.h | 25 FWL_ERR SetToolTipIcon(CFX_DIBitmap* pBitmap);
|
| picturebox.h | 19 FWL_ERR SetPicture(CFX_DIBitmap* pBitmap);
|
| /external/pdfium/core/src/fxge/skia/ |
| fx_skia_device.cpp | 261 CFX_SkiaDeviceDriver::CFX_SkiaDeviceDriver(CFX_DIBitmap* pBitmap, 266 m_pAggDriver = new CFX_AggDeviceDriver(pBitmap, dither_bits, bRgbByteOrder, 532 FX_BOOL CFX_SkiaDeviceDriver::GetDIBits(CFX_DIBitmap* pBitmap, 537 return m_pAggDriver->GetDIBits(pBitmap, left, top, pIccTransform, bDEdge); 540 FX_BOOL CFX_SkiaDeviceDriver::SetDIBits(const CFX_DIBSource* pBitmap, 548 return m_pAggDriver->SetDIBits(pBitmap, argb, pSrcRect, left, top, blend_type, 592 FX_BOOL CFX_SkiaDevice::Attach(CFX_DIBitmap* pBitmap, 597 if (!pBitmap) 599 SetBitmap(pBitmap); 601 pBitmap, dither_bits, bRgbByteOrder, pOriDevice, bGroupKnockout) [all...] |
| /external/pdfium/xfa/src/fwl/src/core/ |
| fwl_widgetmgrimp.cpp | 392 CFX_DIBitmap* pBitmap = pDevice->GetBitmap();
393 if (pBitmap->GetWidth() - rect.width > 1 ||
394 pBitmap->GetHeight() - rect.height > 1) {
[all...] |
| /external/pdfium/xfa/src/fdp/src/fde/ |
| fde_gedevice.cpp | 30 IFDE_RenderDevice* IFDE_RenderDevice::Create(CFX_DIBitmap* pBitmap,
32 if (pBitmap == NULL) {
36 pDevice->Attach(pBitmap, 0, bRgbByteOrder);
473 const CFX_DIBitmap* pBitmap,
500 pFlip[0][0] = pBitmap;
501 pFlip[0][1] = bFlipX ? pBitmap->FlipImage(TRUE, FALSE) : pBitmap;
502 pFlip[1][0] = bFlipY ? pBitmap->FlipImage(FALSE, TRUE) : pBitmap;
504 (bFlipX || bFlipY) ? pBitmap->FlipImage(bFlipX, bFlipY) : pBitmap; [all...] |
| fde_gdidevice.cpp | 13 IFDE_RenderDevice* IFDE_RenderDevice::Create(CFX_DIBitmap* pBitmap,
15 return new CFDE_GdiDevice(pBitmap);
20 CFDE_GdiDevice::CFDE_GdiDevice(CFX_DIBitmap* pBitmap)
26 FXSYS_assert(pBitmap != NULL);
30 bmi.bmiHeader.biWidth = pBitmap->GetWidth();
31 bmi.bmiHeader.biHeight = -pBitmap->GetHeight();
33 bmi.bmiHeader.biBitCount = pBitmap->GetBPP();
34 m_pBitmap = Gdiplus::Bitmap::FromBITMAPINFO(&bmi, pBitmap->GetBuffer());
38 m_rtClipRect.Set(0, 0, (FX_FLOAT)pBitmap->GetWidth(),
39 (FX_FLOAT)pBitmap->GetHeight()); [all...] |
| fde_gedevice.h | 123 const CFX_DIBitmap* pBitmap,
|
| /external/pdfium/fpdfsdk/src/ |
| fpdfview.cpp | 536 CFX_DIBitmap* pBitmap = nullptr; 540 pBitmap = new CFX_DIBitmap; 541 pBitmap->Create(size_x, size_y, FXDIB_Argb); 542 pBitmap->Clear(0x00ffffff); 545 ((CFX_SkiaDevice*)pContext->m_pDevice)->Attach((CFX_DIBitmap*)pBitmap); 548 ((CFX_FxgeDevice*)pContext->m_pDevice)->Attach((CFX_DIBitmap*)pBitmap); 558 if (pBitmap) { 563 int pitch = pBitmap->GetPitch(); 566 pDst->CompositeBitmap(0, 0, size_x, size_y, pBitmap, 0, 0, 571 WinDC.SetDIBits(pBitmap, 0, 0) [all...] |
| /external/pdfium/xfa/include/fwl/basewidget/ |
| fxmath_barcode.h | 25 virtual CFX_WideString Decode(CFX_DIBitmap* pBitmap, int32_t& errorCode) = 0;
|
| /external/pdfium/xfa/src/fwl/src/basewidget/include/ |
| fxmath_barcodeimp.h | 27 virtual CFX_WideString Decode(CFX_DIBitmap* pBitmap, int32_t& errorCode);
|
| /external/pdfium/core/src/fxge/dib/ |
| fx_dib_main.cpp | [all...] |
| fx_dib_convert.cpp | 105 FX_BOOL BuildPalette(const CFX_DIBSource* pBitmap, int dwPaletteType); 211 FX_BOOL CFX_Palette::BuildPalette(const CFX_DIBSource* pBitmap, int pal_type) { 212 if (!pBitmap) { 217 int bpp = pBitmap->GetBPP() / 8; 218 int width = pBitmap->GetWidth(); 219 int height = pBitmap->GetHeight(); 229 uint8_t* scan_line = (uint8_t*)pBitmap->GetScanline(row); [all...] |
| /external/pdfium/xfa/src/fdp/include/ |
| fde_rdv.h | 19 static IFDE_RenderDevice* Create(CFX_DIBitmap* pBitmap,
|
| /external/pdfium/core/include/fpdfapi/ |
| fpdf_render.h | 234 CFX_DIBSource*& pBitmap, 244 void ResetBitmap(CPDF_Stream* pStream, const CFX_DIBitmap* pBitmap);
|
| /external/pdfium/xfa/src/fxfa/src/app/ |
| xfa_ffwidget.cpp | 637 CFX_DIBitmap* pBitmap = m_pTransformer->m_Storer.Detach();
638 if (pBitmap == NULL) {
641 if (pBitmap->IsAlphaMask()) {
645 m_Result = m_pDevice->SetBitMask(pBitmap, m_pTransformer->m_ResultLeft,
649 pBitmap->MultiplyAlpha(m_BitmapAlpha);
651 m_Result = m_pDevice->SetDIBits(pBitmap, m_pTransformer->m_ResultLeft,
654 delete pBitmap;
[all...] |
| xfa_ffwidgetacc.cpp | [all...] |
| /external/pdfium/xfa/src/fwl/src/basewidget/ |
| fxmath_barcodeimp.cpp | 363 CFX_WideString CFX_Barcode::Decode(CFX_DIBitmap* pBitmap, int32_t& errorCode) {
370 CFX_WideString ret = pTmpEngine->Decode(pBitmap, errorCode);
|
| /external/pdfium/core/src/fpdfapi/fpdf_render/ |
| fpdf_render_image.cpp | 822 CFX_DIBitmap* pBitmap = m_pTransformer->m_Storer.Detach(); 823 if (!pBitmap) { 826 if (pBitmap->IsAlphaMask()) { 831 pBitmap, m_pTransformer->m_ResultLeft, m_pTransformer->m_ResultTop, 835 pBitmap->MultiplyAlpha(m_BitmapAlpha); 838 pBitmap, m_pTransformer->m_ResultLeft, m_pTransformer->m_ResultTop, 841 delete pBitmap; [all...] |
| fpdf_render_loadimage.cpp | 109 CFX_DIBSource* pBitmap = m_pDIBSource; 111 return pBitmap; 114 CFX_DIBSource* pBitmap = m_pMask; 116 return pBitmap; 202 void CPDF_DIBSource::ReleaseBitmap(CFX_DIBitmap* pBitmap) const { 203 if (pBitmap && pBitmap != m_pCachedBitmap.get()) { 204 delete pBitmap; [all...] |