Home
last modified time | relevance | path

Searched refs:pPages (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_document.cpp105 CPDF_Dictionary* CPDF_Document::_FindPDFPage(CPDF_Dictionary* pPages, int iPage, int nPagesToGo, in… in _FindPDFPage() argument
107 CPDF_Array* pKidList = pPages->GetArray(FX_BSTRC("Kids")); in _FindPDFPage()
110 return pPages; in _FindPDFPage()
124 if (pKid == pPages) { in _FindPDFPage()
164 CPDF_Dictionary* pPages = pRoot->GetDict(FX_BSTRC("Pages")); in GetPage() local
165 if (pPages == NULL) { in GetPage()
168 CPDF_Dictionary* pPage = _FindPDFPage(pPages, iPage, iPage, 0); in GetPage()
245 CPDF_Dictionary* pPages = pRoot->GetDict(FX_BSTRC("Pages")); in GetPageIndex() local
246 if (pPages == NULL) { in GetPageIndex()
250 return _FindPageIndex(pPages, skip_count, objnum, index); in GetPageIndex()
[all …]
Dfpdf_parser_parser.cpp3244 CPDF_Object *pPages = (CPDF_Object *)m_PagesArray.GetAt(i); in CheckPage() local
3245 if (!pPages) { in CheckPage()
3248 if (!GetPageKids(m_pCurrentParser, pPages)) { in CheckPage()
3249 pPages->Release(); in CheckPage()
3251 pPages = (CPDF_Object *)m_PagesArray.GetAt(i); in CheckPage()
3252 pPages->Release(); in CheckPage()
3258 pPages->Release(); in CheckPage()
3267 FX_BOOL CPDF_DataAvail::GetPageKids(CPDF_Parser *pParser, CPDF_Object *pPages) in GetPageKids() argument
3273 CPDF_Object *pKids = pPages->GetDict()->GetElement(FX_BSTRC("Kids")); in GetPageKids()
3300 CPDF_Object *pPages = GetObject(m_PagesObjNum, pHints, &bExist); in CheckPages() local
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_edit/
Dfpdf_edit_doc.cpp27 CPDF_Dictionary* pPages = FX_NEW CPDF_Dictionary; in CreateNewDoc() local
28 pPages->SetAtName("Type", "Pages"); in CreateNewDoc()
29 pPages->SetAtNumber("Count", 0); in CreateNewDoc()
30 pPages->SetAt("Kids", FX_NEW CPDF_Array); in CreateNewDoc()
31 objnum = AddIndirectObject(pPages); in CreateNewDoc()
1077 static int InsertDeletePDFPage(CPDF_Document* pDoc, CPDF_Dictionary* pPages, in InsertDeletePDFPage() argument
1080 CPDF_Array* pKidList = pPages->GetArray("Kids"); in InsertDeletePDFPage()
1091 pPage->SetAtReference("Parent", pDoc, pPages->GetObjNum()); in InsertDeletePDFPage()
1095 pPages->SetAtInteger("Count", pPages->GetInteger("Count") + (bInsert ? 1 : -1)); in InsertDeletePDFPage()
1113 pPages->SetAtInteger("Count", pPages->GetInteger("Count") + (bInsert ? 1 : -1)); in InsertDeletePDFPage()
[all …]
/external/pdfium/fpdfsdk/src/
Dfpdfeditpage.cpp121 CPDF_Dictionary* pPages = (CPDF_Dictionary*)pDict->GetElement("Parent")->GetDirect(); in FPDFPage_GetRotation() local
122 while(pPages) in FPDFPage_GetRotation()
124 if(pPages->KeyExist("Rotate")) in FPDFPage_GetRotation()
126 rotate = pPages->GetElement("Rotate")->GetDirect()->GetInteger() / 90; in FPDFPage_GetRotation()
129 else if(pPages->KeyExist("Parent")) in FPDFPage_GetRotation()
130 pPages = (CPDF_Dictionary*)pPages->GetElement("Parent")->GetDirect(); in FPDFPage_GetRotation()
/external/chromium_org/third_party/webrtc/modules/video_capture/windows/
Ddevice_info_ds.cc752 ISpecifyPropertyPages* pPages = NULL; in DisplayCaptureSettingsDialogBox() local
756 hr = filter->QueryInterface(IID_ISpecifyPropertyPages, (LPVOID*) &pPages); in DisplayCaptureSettingsDialogBox()
762 hr = pPages->GetPages(&uuid); in DisplayCaptureSettingsDialogBox()
/external/pdfium/core/include/fpdfapi/
Dfpdf_parser.h182 CPDF_Dictionary* _FindPDFPage(CPDF_Dictionary* pPages, int iPage, int nPagesToGo, int level);
1010 FX_BOOL GetPageKids(CPDF_Parser *pParser, CPDF_Object *pPages);