Home
last modified time | relevance | path

Searched refs:iPageCount (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/xfa/src/fxfa/src/parser/
Dxfa_script_layoutpseudomodel.cpp145 int32_t iPageCount = 0; in Script_LayoutPseudoModel_NumberedPageCount() local
155 iPageCount++; in Script_LayoutPseudoModel_NumberedPageCount()
159 iPageCount = iPageNum; in Script_LayoutPseudoModel_NumberedPageCount()
163 FXJSE_Value_SetInteger(hValue, iPageCount); in Script_LayoutPseudoModel_NumberedPageCount()
398 int32_t iPageCount = pNotify->GetDocProvider()->AbsPageCountInBatch(hDoc); in Script_LayoutPseudoModel_AbsPageCountInBatch() local
401 FXJSE_Value_SetInteger(hValue, iPageCount); in Script_LayoutPseudoModel_AbsPageCountInBatch()
411 int32_t iPageCount = pNotify->GetDocProvider()->SheetCountInBatch(hDoc); in Script_LayoutPseudoModel_SheetCountInBatch() local
414 FXJSE_Value_SetInteger(hValue, iPageCount); in Script_LayoutPseudoModel_SheetCountInBatch()
461 int32_t iPageCount = pNotify->GetDocProvider()->AbsPageInBatch(hDoc, hWidget); in Script_LayoutPseudoModel_AbsPageInBatch() local
464 FXJSE_Value_SetInteger(hValue, iPageCount); in Script_LayoutPseudoModel_AbsPageInBatch()
[all …]
Dxfa_layout_pagemgr_new.cpp1179 int32_t iPageCount = GetPageCount(); in MatchPageAreaOddOrEven() local
1181 return eOddOrEven == XFA_ATTRIBUTEENUM_Odd ? iPageCount % 2 == 1 in MatchPageAreaOddOrEven()
1182 : iPageCount % 2 == 0; in MatchPageAreaOddOrEven()
1184 return eOddOrEven == XFA_ATTRIBUTEENUM_Odd ? iPageCount % 2 == 0 in MatchPageAreaOddOrEven()
1185 : iPageCount % 2 == 1; in MatchPageAreaOddOrEven()
/external/pdfium/fpdfsdk/src/javascript/
DDocument.cpp220 int iPageCount = m_pDocument->GetPageCount(); in pageNum() local
225 if (iPageNum >= 0 && iPageNum < iPageCount) { in pageNum()
227 } else if (iPageNum >= iPageCount) { in pageNum()
228 pEnv->JS_docgotoPage(iPageCount - 1); in pageNum()