Home
last modified time | relevance | path

Searched refs:pKidList (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_document.cpp108 CPDF_Array* pKidList = pPages->GetArray(FX_BSTRC("Kids")); in _FindPDFPage() local
109 if (pKidList == NULL) { in _FindPDFPage()
118 int nKids = pKidList->GetCount(); in _FindPDFPage()
120 CPDF_Dictionary* pKid = pKidList->GetDict(i); in _FindPDFPage()
179 CPDF_Array* pKidList = pNode->GetArray(FX_BSTRC("Kids")); in _FindPageIndex() local
180 if (pKidList == NULL) { in _FindPageIndex()
192 if (count && count == pKidList->GetCount()) { in _FindPageIndex()
194 CPDF_Object* pKid = pKidList->GetElement(i); in _FindPageIndex()
203 for (FX_DWORD i = 0; i < pKidList->GetCount(); i ++) { in _FindPageIndex()
204 CPDF_Dictionary* pKid = pKidList->GetDict(i); in _FindPageIndex()
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_edit/
Dfpdf_edit_doc.cpp1058 CPDF_Array* pKidList = pPages->GetArray("Kids"); in InsertDeletePDFPage() local
1059 if (!pKidList) { in InsertDeletePDFPage()
1062 int nKids = pKidList->GetCount(); in InsertDeletePDFPage()
1064 CPDF_Dictionary* pKid = pKidList->GetDict(i); in InsertDeletePDFPage()
1068 pKidList->InsertAt(i, CPDF_Reference::Create(pDoc, pPage->GetObjNum())); in InsertDeletePDFPage()
1071 pKidList->RemoveAt(i); in InsertDeletePDFPage()