Searched defs:page_index (Results 1 - 3 of 3) sorted by relevance

/external/pdfium/fpdfsdk/src/
H A Dfpdf_dataavail.cpp146 DLLEXPORT int STDCALL FPDFAvail_IsPageAvail(FPDF_AVAIL avail, int page_index, FX_DOWNLOADHINTS* hints) argument
150 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsPageAvail(page_index, &hints_wrap);
H A Dfpdfeditpage.cpp50 DLLEXPORT void STDCALL FPDFPage_Delete(FPDF_DOCUMENT document, int page_index) argument
55 if (page_index < 0 || page_index >= pDoc->GetPageCount())
58 pDoc->DeletePage(page_index);
61 DLLEXPORT FPDF_PAGE STDCALL FPDFPage_New(FPDF_DOCUMENT document, int page_index, double width, double height) argument
68 if(page_index < 0)
69 page_index = 0;
70 if(pDoc->GetPageCount()<page_index)
71 page_index = pDoc->GetPageCount();
72 // if (page_index <
[all...]
H A Dfpdfview.cpp301 DLLEXPORT FPDF_PAGE STDCALL FPDF_LoadPage(FPDF_DOCUMENT document, int page_index) argument
304 if (page_index < 0 || page_index >= FPDF_GetPageCount(document)) return NULL;
308 CPDF_Dictionary* pDict = pDoc->GetPage(page_index);
744 DLLEXPORT int STDCALL FPDF_GetPageSizeByIndex(FPDF_DOCUMENT document, int page_index, double* width, double* height) argument
750 CPDF_Dictionary* pDict = pDoc->GetPage(page_index);

Completed in 106 milliseconds