/external/pdfium/fpdfsdk/fpdfxfa/ |
D | cpdfxfa_docenvironment.cpp | 41 : m_pContext(pContext), m_pJSEventContext(nullptr) { in CPDFXFA_DocEnvironment() 42 ASSERT(m_pContext); in CPDFXFA_DocEnvironment() 46 if (m_pJSEventContext && m_pContext->GetFormFillEnv()) { in ~CPDFXFA_DocEnvironment() 47 m_pContext->GetFormFillEnv()->GetJSRuntime()->ReleaseEventContext( in ~CPDFXFA_DocEnvironment() 53 if (hDoc == m_pContext->GetXFADoc() && m_pContext->GetFormFillEnv()) in SetChangeMark() 54 m_pContext->GetFormFillEnv()->SetChangeMark(); in SetChangeMark() 60 if (!m_pContext->GetXFADoc() || !m_pContext->GetFormFillEnv()) in InvalidateRect() 63 if (m_pContext->GetDocType() != DOCTYPE_DYNAMIC_XFA) in InvalidateRect() 66 CPDFXFA_Page* pPage = m_pContext->GetXFAPage(pPageView); in InvalidateRect() 70 CPDFSDK_FormFillEnvironment* pFormFillEnv = m_pContext->GetFormFillEnv(); in InvalidateRect() [all …]
|
D | cpdfxfa_page.cpp | 21 m_pContext(pContext), in CPDFXFA_Page() 26 if (m_pContext) in ~CPDFXFA_Page() 27 m_pContext->RemovePage(this); in ~CPDFXFA_Page() 31 if (!m_pContext) in LoadPDFPage() 34 CPDF_Document* pPDFDoc = m_pContext->GetPDFDoc(); in LoadPDFPage() 50 if (!m_pContext) in LoadXFAPageView() 53 CXFA_FFDoc* pXFADoc = m_pContext->GetXFADoc(); in LoadXFAPageView() 57 CXFA_FFDocView* pXFADocView = m_pContext->GetXFADocView(); in LoadXFAPageView() 70 if (!m_pContext || m_iPageIndex < 0) in LoadPage() 73 int iDocType = m_pContext->GetDocType(); in LoadPage() [all …]
|
D | cpdfxfa_page.h | 32 CPDFXFA_Context* GetContext() const { return m_pContext; } in GetContext() 79 CPDFXFA_Context* const m_pContext; variable
|
D | cpdfxfa_docenvironment.h | 110 CPDFXFA_Context* const m_pContext; // Not owned. variable
|
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_jbig.cpp | 66 pJbig2Context->m_pContext = pdfium::MakeUnique<CJBig2_Context>( in StartDecode() 69 if (!pJbig2Context->m_pContext) in StartDecode() 72 int ret = pJbig2Context->m_pContext->getFirstPage(dest_buf, width, height, in StartDecode() 74 if (pJbig2Context->m_pContext->GetProcessingStatus() == in StartDecode() 76 pJbig2Context->m_pContext.reset(); in StartDecode() 86 return pJbig2Context->m_pContext->GetProcessingStatus(); in StartDecode() 92 int ret = pJbig2Context->m_pContext->Continue(pPause); in ContinueDecode() 93 if (pJbig2Context->m_pContext->GetProcessingStatus() != in ContinueDecode() 95 return pJbig2Context->m_pContext->GetProcessingStatus(); in ContinueDecode() 97 pJbig2Context->m_pContext.reset(); in ContinueDecode()
|
D | ccodec_jbig2module.h | 33 std::unique_ptr<CJBig2_Context> m_pContext; variable
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_progressiverenderer.cpp | 22 m_pContext(pContext), in CPDF_ProgressiveRenderer() 34 if (!m_pContext || !m_pDevice || m_Status != Ready) { in Start() 45 if (m_LayerIndex >= m_pContext->CountLayers()) { in Continue() 49 m_pCurrentLayer = m_pContext->GetLayer(m_LayerIndex); in Continue() 54 m_pContext, m_pDevice, nullptr, nullptr, nullptr, nullptr, m_pOptions, in Continue() 84 m_pContext->GetPageCache()->CacheOptimization( in Continue()
|
D | cpdf_devicebuffer.cpp | 18 : m_pDevice(nullptr), m_pContext(nullptr), m_pObject(nullptr) {} in CPDF_DeviceBuffer() 28 m_pContext = pContext; in Initialize() 71 m_pContext->GetBackground(&buffer, m_pObject, nullptr, &m_Matrix); in OutputToDevice()
|
D | cpdf_scaledrenderbuffer.cpp | 31 m_pContext = pContext; in Initialize() 70 m_pContext->GetBackground(m_pBitmapDevice->GetBitmap(), m_pObject, pOptions, in Initialize()
|
D | cpdf_imagerenderer.cpp | 67 m_pImageObject, m_pRenderStatus->m_pContext->GetPageCache(), m_bStdCS, in StartLoadDIBSource() 165 if (m_pRenderStatus->m_pContext->GetPageCache()) { in StartRenderDIBSource() 166 pPage = m_pRenderStatus->m_pContext->GetPageCache()->GetPage(); in StartRenderDIBSource() 252 bitmap_render.Initialize(m_pRenderStatus->m_pContext, pBitmapDevice2, nullptr, in CalculateDrawImage() 303 bitmap_render.Initialize(m_pRenderStatus->m_pContext, &bitmap_device1, in DrawPatternImage() 355 bitmap_render.Initialize(m_pRenderStatus->m_pContext, &bitmap_device1, in DrawMaskedImage()
|
D | cpdf_renderstatus.cpp | 951 m_pContext(nullptr), in CPDF_RenderStatus() 983 m_pContext = pContext; in Initialize() 1000 m_pPageResource = m_pContext->GetPageResources(); in Initialize() 1213 if (!buffer.Initialize(m_pContext, m_pDevice, rect, pObj, &m_Options, res)) { in DrawObjWithBackground() 1227 status.Initialize(m_pContext, buffer.GetDevice(), buffer.GetMatrix(), nullptr, in DrawObjWithBackground() 1251 status.Initialize(m_pContext, m_pDevice, nullptr, m_pStopObj, this, pFormObj, in ProcessForm() 1306 CPDF_DocRenderData* pDocCache = m_pContext->GetDocument()->GetRenderData(); in GetTransferFunc() 1486 if (m_pContext->GetPageCache()) { in ProcessTransparency() 1487 pPage = m_pContext->GetPageCache()->GetPage(); in ProcessTransparency() 1577 bitmap_render.Initialize(m_pContext, &bitmap_device, nullptr, m_pStopObj, in ProcessTransparency() [all …]
|
D | cpdf_renderstatus.h | 64 CPDF_RenderContext* GetContext() { return m_pContext; } in GetContext() 159 CPDF_RenderContext* m_pContext; variable
|
D | cpdf_devicebuffer.h | 34 CPDF_RenderContext* m_pContext; variable
|
D | cpdf_scaledrenderbuffer.h | 39 CPDF_RenderContext* m_pContext; variable
|
D | cpdf_progressiverenderer.h | 50 CPDF_RenderContext* const m_pContext; variable
|
/external/pdfium/fpdfsdk/javascript/ |
D | JS_Runtime_Stub.cpp | 128 if (!m_pContext) in NewEventContext() 129 m_pContext = pdfium::MakeUnique<CJS_EventContextStub>(); in NewEventContext() 130 return m_pContext.get(); in NewEventContext() 156 std::unique_ptr<CJS_EventContextStub> m_pContext; member in CJS_RuntimeStub
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationWin32KeyedMutexTests.cpp | 603 , m_pContext (pContext) in DX11Operation() 745 m_pContext->OMSetRenderTargets(1, &m_pRenderTargetView, NULL); in DX11Operation() 755 m_pContext->RSSetViewports(1, &vp); in DX11Operation() 821 m_pContext->IASetVertexBuffers(0, 1, &m_pVertexBuffer, &stride, &offset); in DX11Operation() 824 m_pContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP); in DX11Operation() 877 …m_pContext->CopySubresourceRegion(m_pBuffer[BUFFER_VK_READ], 0, 0, 0, 0, m_pBuffer[BUFFER_VK_WRITE… in copyMemory() 879 m_pContext->OMSetRenderTargets(1, &m_pRenderTargetView, NULL); in copyMemory() 882 m_pContext->ClearRenderTargetView(m_pRenderTargetView, gray); in copyMemory() 884 m_pContext->VSSetShader(m_pVertexShader, NULL, 0); in copyMemory() 885 m_pContext->PSSetShader(m_pPixelShader, NULL, 0); in copyMemory() [all …]
|
/external/pdfium/fxjs/ |
D | cfxjse_class.h | 31 CFXJSE_Context* GetContext() { return m_pContext; } in GetContext() 39 CFXJSE_Context* m_pContext; variable
|
D | cfxjse_class.cpp | 434 : m_lpClassDefinition(nullptr), m_pContext(lpContext) {} in CFXJSE_Class()
|
/external/pdfium/xfa/fxfa/app/ |
D | xfa_checksum.cpp | 96 : m_pContext(pContext) { in CXFA_SAXReaderHandler() 97 ASSERT(m_pContext); in CXFA_SAXReaderHandler() 209 m_pContext->Update(CFX_ByteStringC(pBuffer, iLength)); in UpdateChecksum()
|
/external/pdfium/core/fpdfapi/ |
D | cpdf_pagerendercontext.h | 26 std::unique_ptr<CPDF_RenderContext> m_pContext; variable
|
/external/pdfium/xfa/fxfa/ |
D | xfa_checksum.h | 57 CXFA_ChecksumContext* m_pContext; variable
|
/external/pdfium/fpdfsdk/ |
D | fpdfview.cpp | 118 pContext->m_pContext = pdfium::MakeUnique<CPDF_RenderContext>(pPage); in RenderPageImpl() 119 pContext->m_pContext->AppendLayer(pPage, &matrix); in RenderPageImpl() 124 pContext->m_pAnnots->DisplayAnnots(pPage, pContext->m_pContext.get(), in RenderPageImpl() 129 pContext->m_pContext.get(), pContext->m_pDevice.get(), in RenderPageImpl()
|