Lines Matching refs:m_pPDFPage
34 return m_pPDFPage.Get(); in AsPDFPage()
51 if (!m_pPDFPage || m_pPDFPage->GetDict() != pDict) in LoadPDFPage()
79 m_pPDFPage = pdfium::MakeRetain<CPDF_Page>(GetDocument(), pPageDict); in LoadPDFPageFromDict()
80 m_pPDFPage->SetRenderCache( in LoadPDFPageFromDict()
81 pdfium::MakeUnique<CPDF_PageRenderCache>(m_pPDFPage.Get())); in LoadPDFPageFromDict()
82 m_pPDFPage->ParseContent(); in LoadPDFPageFromDict()
87 if (!m_pPDFPage && !pPageView) in GetPageWidth()
95 if (m_pPDFPage) in GetPageWidth()
96 return m_pPDFPage->GetPageWidth(); in GetPageWidth()
109 if (!m_pPDFPage && !pPageView) in GetPageHeight()
117 if (m_pPDFPage) in GetPageHeight()
118 return m_pPDFPage->GetPageHeight(); in GetPageHeight()
134 if (!m_pPDFPage && !pPageView) in DeviceToPage()
147 if (!m_pPDFPage && !pPageView) in PageToDevice()
157 if (!m_pPDFPage && !pPageView) in GetDisplayMatrix()
165 if (m_pPDFPage) in GetDisplayMatrix()
166 return m_pPDFPage->GetDisplayMatrix(rect, iRotate); in GetDisplayMatrix()