Searched refs:iPage (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
D | fpdf_parser_document.cpp | 103 int iPage, in _FindPDFPage() argument 130 m_PageList.SetAt(iPage - nPagesToGo, pKid->GetObjNum()); in _FindPDFPage() 135 return _FindPDFPage(pKid, iPage, nPagesToGo, level + 1); in _FindPDFPage() 143 CPDF_Dictionary* CPDF_Document::GetPage(int iPage) { in GetPage() argument 144 if (iPage < 0 || iPage >= m_PageList.GetSize()) in GetPage() 147 if (m_bLinearized && (iPage == (int)m_dwFirstPageNo)) { in GetPage() 153 int objnum = m_PageList.GetAt(iPage); in GetPage() 169 CPDF_Dictionary* pPage = _FindPDFPage(pPages, iPage, iPage, 0); in GetPage() 173 m_PageList.SetAt(iPage, pPage->GetObjNum()); in GetPage()
|
D | fpdf_parser_parser.cpp | 2737 DocAvailStatus IsPageAvail(int iPage, IFX_DownloadHints* pHints) override; 2797 FX_BOOL CheckPageAnnots(int iPage, IFX_DownloadHints* pHints); 2799 DocAvailStatus CheckLinearizedFirstPage(int iPage, IFX_DownloadHints* pHints); 2801 FX_BOOL CheckPage(int32_t iPage, IFX_DownloadHints* pHints); 2803 FX_BOOL LoadDocPage(int32_t iPage, IFX_DownloadHints* pHints); 2805 int32_t iPage, 2816 bool IsFirstCheck(int iPage); 2817 void ResetFirstCheck(int iPage); 3392 bool CPDF_DataAvail::IsFirstCheck(int iPage) { in IsFirstCheck() argument 3393 return m_pageMapCheckState.insert(iPage).second; in IsFirstCheck() [all …]
|
/external/pdfium/core/src/fpdfapi/fpdf_edit/ |
D | fpdf_edit_doc.cpp | 1066 int iPage, in InsertNewPage() argument 1078 if (iPage < 0 || iPage > nPages) { in InsertNewPage() 1081 if (iPage == nPages) { in InsertNewPage() 1093 if (InsertDeletePDFPage(pDoc, pPages, iPage, pPageDict, TRUE, stack) < 0) { in InsertNewPage() 1097 pageList.InsertAt(iPage, pPageDict->GetObjNum()); in InsertNewPage() 1098 return iPage; in InsertNewPage() 1100 CPDF_Dictionary* CPDF_Document::CreateNewPage(int iPage) { in CreateNewPage() argument 1104 if (InsertNewPage(this, iPage, pDict, m_PageList) < 0) { in CreateNewPage() 1119 void CPDF_Document::DeletePage(int iPage) { in DeletePage() argument 1129 if (iPage < 0 || iPage >= nPages) { in DeletePage() [all …]
|
/external/pdfium/xfa/src/fxfa/src/parser/ |
D | xfa_script_layoutpseudomodel.cpp | 533 int32_t iPage = 0; in Script_LayoutPseudoModel_PageImp() local 536 FXJSE_Value_SetInteger(hValue, iPage); in Script_LayoutPseudoModel_PageImp() 547 iPage = pLayoutItem->GetFirst()->GetPage()->GetPageIndex(); in Script_LayoutPseudoModel_PageImp() 549 FXJSE_Value_SetInteger(hValue, bAbsPage ? iPage : iPage + 1); in Script_LayoutPseudoModel_PageImp()
|
/external/pdfium/core/include/fpdfapi/ |
D | fpdf_parser.h | 87 CPDF_Dictionary* GetPage(int iPage); 146 CPDF_Dictionary* CreateNewPage(int iPage); 148 void DeletePage(int iPage); 173 int iPage, 909 virtual DocAvailStatus IsPageAvail(int iPage, IFX_DownloadHints* pHints) = 0;
|
/external/sqlite/dist/ |
D | sqlite3.c | 17374 int iPage, in sqlite3OsShmMap() argument 17380 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp); in sqlite3OsShmMap() 50837 static int walIndexPage(Wal *pWal, int iPage, volatile u32 **ppPage){ 50841 if( pWal->nWiData<=iPage ){ 50842 int nByte = sizeof(u32*)*(iPage+1); 50850 sizeof(u32*)*(iPage+1-pWal->nWiData)); 50852 pWal->nWiData = iPage+1; 50856 if( pWal->apWiData[iPage]==0 ){ 50858 pWal->apWiData[iPage] = (u32 volatile *)sqlite3MallocZero(WALINDEX_PGSZ); 50859 if( !pWal->apWiData[iPage] ) rc = SQLITE_NOMEM; [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 17374 int iPage, in sqlite3OsShmMap() argument 17380 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp); in sqlite3OsShmMap() 50819 static int walIndexPage(Wal *pWal, int iPage, volatile u32 **ppPage){ 50823 if( pWal->nWiData<=iPage ){ 50824 int nByte = sizeof(u32*)*(iPage+1); 50832 sizeof(u32*)*(iPage+1-pWal->nWiData)); 50834 pWal->nWiData = iPage+1; 50838 if( pWal->apWiData[iPage]==0 ){ 50840 pWal->apWiData[iPage] = (u32 volatile *)sqlite3MallocZero(WALINDEX_PGSZ); 50841 if( !pWal->apWiData[iPage] ) rc = SQLITE_NOMEM; [all …]
|