Home | History | Annotate | Download | only in fpdfsdk

Lines Matching defs:pDoc

99   auto pDoc = pdfium::MakeUnique<CPDF_Document>(nullptr);
100 pDoc->CreateNewDoc();
115 CPDF_Dictionary* pInfoDict = pDoc->GetInfo();
122 // Caller takes ownership of pDoc.
123 return FPDFDocumentFromCPDFDocument(pDoc.release());
128 if (UnderlyingDocumentType* pDoc = UnderlyingFromFPDFDocument(document))
129 pDoc->DeletePage(page_index);
136 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
137 if (!pDoc)
140 page_index = pdfium::clamp(page_index, 0, pDoc->GetPageCount());
141 CPDF_Dictionary* pPageDict = pDoc->CreateNewPage(page_index);
159 auto pPage = pdfium::MakeUnique<CPDF_Page>(pDoc, pPageDict, true);