Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfdoc/
Ddoc_annot.cpp19 CPDF_Array* pAnnots = m_pPageDict->GetArray("Annots"); in CPDF_AnnotList() local
20 if (pAnnots == NULL) { in CPDF_AnnotList()
26 for (FX_DWORD i = 0; i < pAnnots->GetCount(); i ++) { in CPDF_AnnotList()
27 CPDF_Dictionary* pDict = (CPDF_Dictionary*)pAnnots->GetElementValue(i); in CPDF_AnnotList()
38 pAnnots->InsertAt(i, pAction); in CPDF_AnnotList()
39 pAnnots->RemoveAt(i + 1); in CPDF_AnnotList()
40 pDict = pAnnots->GetDict(i); in CPDF_AnnotList()
Ddoc_form.cpp1269 CPDF_Array* pAnnots = pPageDict->GetArray(FX_BSTRC("Annots")); in FixPageFields() local
1270 if (pAnnots == NULL) { in FixPageFields()
1273 int iAnnotCount = pAnnots->GetCount(); in FixPageFields()
1275 CPDF_Dictionary* pAnnot = pAnnots->GetDict(i); in FixPageFields()
1623 CPDF_Array* pAnnots = pPageDict->GetArray("Annots"); in GetPageWithWidget() local
1624 if (pAnnots == NULL) { in GetPageWithWidget()
1627 FX_DWORD dwCount = pAnnots->GetCount(); in GetPageWithWidget()
1629 CPDF_Object* pAnnotDict = pAnnots->GetElementValue(i); in GetPageWithWidget()
/external/pdfium/fpdfsdk/src/
Dfpdfdoc.cpp215 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArray("Annots"); in FPDFLink_Enumerate() local
216 if(!pAnnots) in FPDFLink_Enumerate()
218 for (int i = *startPos; i < (int)pAnnots->GetCount(); i++) { in FPDFLink_Enumerate()
219 CPDF_Dictionary* pDict = (CPDF_Dictionary*)pAnnots->GetElementValue(i); in FPDFLink_Enumerate()
Dfpdf_flatten.cpp93 CPDF_Array* pAnnots = pPageDic->GetArray("Annots"); in ParserAnnots() local
94 if (!pAnnots) in ParserAnnots()
97 FX_DWORD dwSize = pAnnots->GetCount(); in ParserAnnots()
100 CPDF_Object* pObj = pAnnots->GetElementValue(i); in ParserAnnots()
Dfsdk_baseform.cpp1819 if (CPDF_Array* pAnnots = pPageDict->GetArray("Annots")) in GetPageIndexByAnnotDict() local
1821 for (int j=0,jsz=pAnnots->GetCount(); j<jsz; j++) in GetPageIndexByAnnotDict()
1823 CPDF_Object* pDict = pAnnots->GetElementValue(j); in GetPageIndexByAnnotDict()
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_parser.cpp4368 CPDF_Object *pAnnots = pPageDict->GetElement(FX_BSTRC("Annots")); in CheckPageAnnots() local
4369 if (!pAnnots) { in CheckPageAnnots()
4373 obj_array.Add(pAnnots); in CheckPageAnnots()