Home
last modified time | relevance | path

Searched refs:m_pPage (Results 1 – 12 of 12) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_annotcontext.cpp17 : m_pAnnotDict(pAnnotDict), m_pPage(pPage) { in CPDF_AnnotContext()
19 ASSERT(m_pPage); in CPDF_AnnotContext()
33 m_pPage->GetDocument(), m_pPage->m_pResources.Get(), pStream); in SetForm()
Dcpdf_annotcontext.h33 CPDF_Page* GetPage() const { return m_pPage.Get(); } in GetPage()
38 UnownedPtr<CPDF_Page> const m_pPage; variable
Dcpdf_page.cpp214 : m_pPage(pPage) {} in RenderContextClearer()
217 m_pPage->SetRenderContext(nullptr); in ~RenderContextClearer()
Dcpdf_page.h51 UnownedPtr<CPDF_Page> const m_pPage;
/external/pdfium/core/fxcodec/jbig2/
DJBig2_Context.cpp119 if (m_pStream->getByteLeft() > 0 && m_pPage && pPause && in DecodeSequential()
142 m_pPage = pdfium::MakeUnique<CJBig2_Image>(width, height, stride, pBuf); in GetFirstPage()
340 m_pPage = in ProcessingParseSegmentData()
344 if (!m_pPage->data()) { in ProcessingParseSegmentData()
349 m_pPage->Fill((pPageInfo->m_cFlags & 4) ? 1 : 0); in ProcessingParseSegmentData()
802 (ri.y + ri.height > m_pPage->height())) { in ParseTextRegion()
803 m_pPage->Expand(ri.y + ri.height, (pPageInfo->m_cFlags & 4) ? 1 : 0); in ParseTextRegion()
806 m_pPage->ComposeFrom(ri.x, ri.y, pSegment->m_Image.get(), in ParseTextRegion()
920 ri.y + ri.height > m_pPage->height()) { in ParseHalftoneRegion()
921 m_pPage->Expand(ri.y + ri.height, (pPageInfo->m_cFlags & 4) ? 1 : 0); in ParseHalftoneRegion()
[all …]
DJBig2_Context.h93 std::unique_ptr<CJBig2_Image> m_pPage; variable
/external/pdfium/core/fpdfapi/render/
Dcpdf_pagerendercache.cpp32 CPDF_PageRenderCache::CPDF_PageRenderCache(CPDF_Page* pPage) : m_pPage(pPage) {} in CPDF_PageRenderCache()
88 m_pPage->GetDocument(), pImage); in StartGetCachedBitmap()
91 pRenderStatus->GetFormResource(), m_pPage->m_pPageResources.Get(), bStdCS, in StartGetCachedBitmap()
Dcpdf_pagerendercache.h36 CPDF_Page* GetPage() const { return m_pPage.Get(); } in GetPage()
52 UnownedPtr<CPDF_Page> const m_pPage; variable
/external/pdfium/core/fpdfdoc/
Dcpdf_structtree.h32 const CPDF_Dictionary* GetPage() const { return m_pPage.Get(); } in GetPage()
48 RetainPtr<const CPDF_Dictionary> m_pPage; variable
Dcpdf_structtree.cpp47 m_pPage.Reset(pPageDict); in LoadPageTree()
/external/pdfium/core/fpdftext/
Dcpdf_textpage.cpp244 : m_pPage(pPage), m_rtl(rtl), m_DisplayMatrix(GetPageMatrix(pPage)) { in CPDF_TextPage()
510 DCHECK_NE(m_pPage->GetPageObjectCount(), 0); in FindTextlineFlowOrientation()
512 const int32_t nPageWidth = static_cast<int32_t>(m_pPage->GetPageWidth()); in FindTextlineFlowOrientation()
513 const int32_t nPageHeight = static_cast<int32_t>(m_pPage->GetPageHeight()); in FindTextlineFlowOrientation()
524 for (const auto& pPageObj : *m_pPage) { in FindTextlineFlowOrientation()
582 if (m_pPage->GetPageObjectCount() == 0) in ProcessObject()
586 for (auto it = m_pPage->begin(); it != m_pPage->end(); ++it) { in ProcessObject()
593 ProcessTextObject(pObj->AsText(), matrix, m_pPage.Get(), it); in ProcessObject()
Dcpdf_textpage.h136 UnownedPtr<const CPDF_Page> const m_pPage; variable