Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfdoc/
Ddoc_annot.cpp15 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArray("Annots"); in CPDF_AnnotList() local
16 if (!pAnnots) in CPDF_AnnotList()
22 for (FX_DWORD i = 0; i < pAnnots->GetCount(); ++i) { in CPDF_AnnotList()
23 CPDF_Dictionary* pDict = ToDictionary(pAnnots->GetElementValue(i)); in CPDF_AnnotList()
31 pAnnots->InsertAt(i, pAction); in CPDF_AnnotList()
32 pAnnots->RemoveAt(i + 1); in CPDF_AnnotList()
33 pDict = pAnnots->GetDict(i); in CPDF_AnnotList()
Ddoc_form.cpp913 CPDF_Array* pAnnots = pPageDict->GetArray("Annots"); in FixPageFields() local
914 if (!pAnnots) { in FixPageFields()
917 int iAnnotCount = pAnnots->GetCount(); in FixPageFields()
919 CPDF_Dictionary* pAnnot = pAnnots->GetDict(i); in FixPageFields()
/external/pdfium/fpdfsdk/src/
Dfpdfdoc.cpp268 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArray("Annots"); in FPDFLink_Enumerate() local
269 if (!pAnnots) in FPDFLink_Enumerate()
271 for (int i = *startPos; i < (int)pAnnots->GetCount(); i++) { in FPDFLink_Enumerate()
273 ToDictionary(static_cast<CPDF_Object*>(pAnnots->GetElementValue(i))); in FPDFLink_Enumerate()
Dfpdf_flatten.cpp94 CPDF_Array* pAnnots = pPageDic->GetArray("Annots"); in ParserAnnots() local
95 if (!pAnnots) in ParserAnnots()
98 FX_DWORD dwSize = pAnnots->GetCount(); in ParserAnnots()
100 CPDF_Dictionary* pAnnotDic = ToDictionary(pAnnots->GetElementValue(i)); in ParserAnnots()
Dfsdk_baseform.cpp2129 if (CPDF_Array* pAnnots = pPageDict->GetArray("Annots")) { local
2130 for (int j = 0, jsz = pAnnots->GetCount(); j < jsz; j++) {
2131 CPDF_Object* pDict = pAnnots->GetElementValue(j);
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_parser.cpp4355 CPDF_Object* pAnnots = pPageDict->GetElement("Annots"); in CheckPageAnnots() local
4356 if (!pAnnots) { in CheckPageAnnots()
4360 obj_array.Add(pAnnots); in CheckPageAnnots()