Home | History | Annotate | Download | only in fpdfsdk

Lines Matching refs:pDoc

66   CPDF_Document* pDoc = new CPDF_Document(nullptr);
67 pDoc->CreateNewDoc();
84 pInfoDict = pDoc->GetInfo();
91 return FPDFDocumentFromCPDFDocument(pDoc);
95 if (UnderlyingDocumentType* pDoc = UnderlyingFromFPDFDocument(document))
96 pDoc->DeletePage(page_index);
103 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
104 if (!pDoc)
107 page_index = std::min(std::max(page_index, 0), pDoc->GetPageCount());
108 CPDF_Dictionary* pPageDict = pDoc->CreateNewPage(page_index);
125 CPDF_Page* pPage = new CPDF_Page(pDoc, pPageDict, true);