HomeSort by relevance Sort by last modified time
    Searched refs:pPageDict (Results 1 - 17 of 17) sorted by null

  /external/pdfium/core/fpdfapi/page/
cpdf_page.cpp 24 CPDF_Dictionary* pPageDict,
30 m_pFormDict = pPageDict;
32 if (!pPageDict)
109 CPDF_Dictionary* pPageDict = m_pFormDict;
112 visited.insert(pPageDict);
113 if (CPDF_Object* pObj = pPageDict->GetDirectObjectFor(name))
116 pPageDict = pPageDict->GetDictFor("Parent");
117 if (!pPageDict || pdfium::ContainsKey(visited, pPageDict))
    [all...]
cpdf_page.h 42 CPDF_Dictionary* pPageDict,
  /external/pdfium/fpdfsdk/
fpdf_flatten.cpp 250 CPDF_Dictionary* pPageDict = pPage->m_pFormDict;
251 if (!pDocument || !pPageDict)
257 ParserAnnots(pDocument, pPageDict, &RectArray, &ObjectArray, nFlag);
263 CFX_FloatRect rcOriginalMB = pPageDict->GetRectFor("MediaBox");
264 if (pPageDict->KeyExist("CropBox"))
265 rcOriginalMB = pPageDict->GetRectFor("CropBox");
274 if (pPageDict->KeyExist("ArtBox"))
275 rcOriginalCB = pPageDict->GetRectFor("ArtBox");
280 CPDF_Array* pMediaBox = pPageDict->SetNewFor<CPDF_Array>("MediaBox");
288 CPDF_Array* pCropBox = pPageDict->SetNewFor<CPDF_Array>("ArtBox")
    [all...]
fpdfeditpage.cpp 108 CPDF_Dictionary* pPageDict = pDoc->CreateNewPage(page_index);
109 if (!pPageDict)
112 CPDF_Array* pMediaBoxArray = pPageDict->SetNewFor<CPDF_Array>("MediaBox");
117 pPageDict->SetNewFor<CPDF_Number>("Rotate", 0);
118 pPageDict->SetNewFor<CPDF_Dictionary>("Resources");
123 pPage->LoadPDFPage(pPageDict);
125 CPDF_Page* pPage = new CPDF_Page(pDoc, pPageDict, true);
cpdfsdk_interform.cpp 100 if (CPDF_Dictionary* pPageDict = pControlDict->GetDictFor("P")) {
101 int nPageIndex = pDocument->GetPageIndex(pPageDict->GetObjNum());
146 if (CPDF_Dictionary* pPageDict = pDocument->GetPage(i)) {
147 if (CPDF_Array* pAnnots = pPageDict->GetArrayFor("Annots")) {
fpdfformfill.cpp 734 CPDF_Dictionary* pPageDict = pPDFPage->m_pFormDict;
735 CPDF_AAction aa(pPageDict->GetDictFor("AA"));
  /external/pdfium/core/fpdfapi/edit/
cpdf_pagecontentgenerator_unittest.cpp 121 CPDF_Dictionary* pPageDict = pDoc->CreateNewPage(0);
122 auto pTestPage = pdfium::MakeUnique<CPDF_Page>(pDoc.get(), pPageDict, false);
157 CPDF_Dictionary* pPageDict = pDoc->CreateNewPage(0);
158 auto pTestPage = pdfium::MakeUnique<CPDF_Page>(pDoc.get(), pPageDict, false);
cpdf_pagecontentgenerator.cpp 71 CPDF_Dictionary* pPageDict = m_pPage->m_pFormDict;
73 pPageDict ? pPageDict->GetDirectObjectFor("Contents") : nullptr;
75 pPageDict->RemoveFor("Contents");
79 pPageDict->SetNewFor<CPDF_Reference>("Contents", m_pDocument,
  /external/pdfium/core/fpdfdoc/
fpdf_tagged.h 22 const CPDF_Dictionary* pPageDict);
doc_tagged.cpp 49 const CPDF_Dictionary* pPageDict) {
54 pTree->LoadPageTree(pPageDict);
73 void CPDF_StructTree::LoadPageTree(const CPDF_Dictionary* pPageDict) {
74 m_pPage = pPageDict;
97 int parents_id = pPageDict->GetIntegerFor("StructParents", -1);
tagged_int.h 43 void LoadPageTree(const CPDF_Dictionary* pPageDict);
cpdf_formcontrol.cpp 305 CPDF_Dictionary* pPageDict = m_pWidgetDict->GetDictFor("P");
306 pObj = FPDF_GetFieldAttr(pPageDict, "Resources");
cpdf_interform.cpp 1063 CPDF_Dictionary* pPageDict = pPage->m_pFormDict;
1064 if (!pPageDict)
1067 CPDF_Array* pAnnots = pPageDict->GetArrayFor("Annots");
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_document.h 125 CPDF_Dictionary* pPageDict,
128 bool InsertNewPage(int iPage, CPDF_Dictionary* pPageDict);
cpdf_document.cpp 680 CPDF_Dictionary* pPageDict,
695 pKidList->InsertNewAt<CPDF_Reference>(i, this, pPageDict->GetObjNum());
696 pPageDict->SetNewFor<CPDF_Reference>("Parent", this,
715 if (!InsertDeletePDFPage(pKid, nPagesToGo, pPageDict, bInsert, pVisited))
725 bool CPDF_Document::InsertNewPage(int iPage, CPDF_Dictionary* pPageDict) {
739 pPagesList->AddNew<CPDF_Reference>(this, pPageDict->GetObjNum());
741 pPageDict->SetNewFor<CPDF_Reference>("Parent", this, pPages->GetObjNum());
745 if (!InsertDeletePDFPage(pPages, iPage, pPageDict, true, &stack))
748 m_PageList.insert(m_PageList.begin() + iPage, pPageDict->GetObjNum());
    [all...]
cpdf_data_avail.cpp     [all...]
  /external/pdfium/fpdfsdk/javascript/
Document.cpp     [all...]

Completed in 1265 milliseconds