Home
last modified time | relevance | path

Searched refs:m_pResources (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_edit/
Dfpdf_edit_content.cpp60 if (m_pPage->m_pResources == NULL) { in RealizeResource()
61 m_pPage->m_pResources = new CPDF_Dictionary; in RealizeResource()
62 int objnum = m_pDocument->AddIndirectObject(m_pPage->m_pResources); in RealizeResource()
65 CPDF_Dictionary* pResList = m_pPage->m_pResources->GetDict(szType); in RealizeResource()
68 m_pPage->m_pResources->SetAt(szType, pResList); in RealizeResource()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page.cpp678 m_pResources = NULL; in CPDF_PageObjects()
823 m_pPageResources = m_pResources = NULL; in Load()
827 m_pResources = pageAttr ? pageAttr->GetDict() : NULL; in Load()
828 m_pPageResources = m_pResources; in Load()
933 m_pResources = m_pFormDict->GetDict(FX_BSTRC("Resources")); in CPDF_Form()
935 if (m_pResources == NULL) { in CPDF_Form()
936 m_pResources = pParentResources; in CPDF_Form()
938 if (m_pResources == NULL) { in CPDF_Form()
939 m_pResources = pPageResources; in CPDF_Form()
965 CPDF_Form* pClone = new CPDF_Form(m_pDocument, m_pPageResources, m_pFormStream, m_pResources); in Clone()
Dfpdf_page_parser.cpp75 m_pResources = pResources; in PrepareParse()
77 m_pResources = m_pParentResources; in PrepareParse()
79 if (m_pResources == NULL) { in PrepareParse()
80 m_pResources = pPageResources; in PrepareParse()
645 if (m_pResources == NULL) { in Handle_ExecuteXObject()
648 if (m_pResources == m_pPageResources) { in Handle_ExecuteXObject()
649 CPDF_Dictionary* pList = m_pResources->GetDict(FX_BSTRC("XObject")); in Handle_ExecuteXObject()
658 CPDF_Dictionary* pList = m_pResources->GetDict(FX_BSTRC("XObject")); in Handle_ExecuteXObject()
720 parser.PrepareParse(m_pDocument, m_pPageResources, m_pResources, &m_mtContentToUser, in AddForm()
735 pFormObj->m_pForm = new CPDF_Form(m_pDocument, m_pPageResources, pStream, m_pResources); in AddForm()
[all …]
Dfpdf_page_parser_old.cpp1008 …m_pParser->PrepareParse(pForm->m_pDocument, pForm->m_pPageResources, pForm->m_pResources, pParentM… in Start()
1081 … m_pObjects->m_pResources, &m_pObjects->m_BBox, &m_Options, NULL, 0); in Continue()
Dpageint.h137 CPDF_Dictionary* m_pResources; variable
/external/pdfium/core/include/fpdfapi/
Dfpdf_page.h116 CPDF_Dictionary* m_pResources; variable
/external/pdfium/core/src/reflow/
Dreflowedpage.h156 return ((CPDF_FormObject*)pParentObj)->m_pForm->m_pResources; in GetFormDict()
Dlayoutprocessor_reflow.cpp1074 …pReflowedPage->GetFormResDict(pImageObj), m_pReflowedPage->m_pPDFPage->m_pResources, 0, 0, TRUE)) { in CreateRFData()
/external/pdfium/core/src/fpdfdoc/
Ddoc_annot.cpp227 pForm = new CPDF_Form(m_pList->m_pDocument, pPage->m_pResources, pStream); in GetAPForm()