Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfapi/page/
Dcpdf_form.cpp24 m_pResources = m_pFormDict->GetDictFor("Resources"); in CPDF_Form()
26 if (!m_pResources) in CPDF_Form()
27 m_pResources = pParentResources; in CPDF_Form()
28 if (!m_pResources) in CPDF_Form()
29 m_pResources = pPageResources; in CPDF_Form()
Dcpdf_page.cpp36 m_pResources = pageAttr ? pageAttr->GetDict() : nullptr; in CPDF_Page()
37 m_pPageResources = m_pResources; in CPDF_Page()
Dcpdf_streamcontentparser.cpp260 m_pResources(pResources), in CPDF_StreamContentParser()
281 if (!m_pResources) in CPDF_StreamContentParser()
282 m_pResources = m_pParentResources; in CPDF_StreamContentParser()
283 if (!m_pResources) in CPDF_StreamContentParser()
284 m_pResources = m_pPageResources; in CPDF_StreamContentParser()
774 new CPDF_Form(m_pDocument, m_pPageResources, pStream, m_pResources)); in AddForm()
1166 if (!m_pResources) in FindResourceObj()
1168 CPDF_Dictionary* pDict = m_pResources->GetDictFor(type); in FindResourceObj()
1171 if (m_pResources == m_pPageResources || !m_pPageResources) in FindResourceObj()
1187 pFont->AsType3Font()->SetPageResources(m_pResources); in FindFont()
Dcpdf_pageobjectholder.h54 CPDF_Dictionary* m_pResources; variable
Dcpdf_contentparser.cpp101 pForm->m_pDocument, pForm->m_pPageResources, pForm->m_pResources, in Start()
170 nullptr, nullptr, m_pObjectHolder, m_pObjectHolder->m_pResources, in Continue()
Dcpdf_pageobjectholder.cpp21 m_pResources(nullptr), in CPDF_PageObjectHolder()
Dcpdf_streamcontentparser.h193 CPDF_Dictionary* m_pResources; variable
/external/pdfium/core/fpdfapi/edit/
Dcpdf_pagecontentgenerator.cpp87 if (!m_pPage->m_pResources) { in RealizeResource()
88 m_pPage->m_pResources = m_pDocument->NewIndirect<CPDF_Dictionary>(); in RealizeResource()
90 "Resources", m_pDocument, m_pPage->m_pResources->GetObjNum()); in RealizeResource()
92 CPDF_Dictionary* pResList = m_pPage->m_pResources->GetDictFor(bsType); in RealizeResource()
94 pResList = m_pPage->m_pResources->SetNewFor<CPDF_Dictionary>(bsType); in RealizeResource()
Dcpdf_pagecontentgenerator_unittest.cpp32 return pGen->m_pPage->m_pResources->GetDictFor(type)->GetDictFor(name); in TestGetResource()
/external/pdfium/fpdfsdk/
Dfpdfedit_embeddertest.cpp403 the_page->m_pResources->GetDictFor("ExtGState"); in TEST_F()
435 CPDF_Dictionary* font_dict = the_page->m_pResources->GetDictFor("Font"); in TEST_F()
/external/pdfium/core/fpdfdoc/
Dcpdf_annot.cpp208 pdfium::MakeUnique<CPDF_Form>(m_pDocument, pPage->m_pResources, pStream); in GetAPForm()