Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfdoc/
Ddoc_annot.cpp17 CPDF_Array* pAnnots = m_pPageDict->GetArray("Annots"); in CPDF_AnnotList() local
18 if (pAnnots == NULL) { in CPDF_AnnotList()
24 for (FX_DWORD i = 0; i < pAnnots->GetCount(); i ++) { in CPDF_AnnotList()
25 CPDF_Dictionary* pDict = (CPDF_Dictionary*)pAnnots->GetElementValue(i); in CPDF_AnnotList()
36 pAnnots->InsertAt(i, pAction); in CPDF_AnnotList()
37 pAnnots->RemoveAt(i + 1); in CPDF_AnnotList()
38 pDict = pAnnots->GetDict(i); in CPDF_AnnotList()
Ddoc_form.cpp1290 CPDF_Array* pAnnots = pPageDict->GetArray(FX_BSTRC("Annots")); in FixPageFields() local
1291 if (pAnnots == NULL) { in FixPageFields()
1294 int iAnnotCount = pAnnots->GetCount(); in FixPageFields()
1296 CPDF_Dictionary* pAnnot = pAnnots->GetDict(i); in FixPageFields()
1647 CPDF_Array* pAnnots = pPageDict->GetArray("Annots"); in GetPageWithWidget() local
1648 if (pAnnots == NULL) { in GetPageWithWidget()
1651 FX_DWORD dwCount = pAnnots->GetCount(); in GetPageWithWidget()
1653 CPDF_Object* pAnnotDict = pAnnots->GetElementValue(i); in GetPageWithWidget()
/external/pdfium/fpdfsdk/src/
Dfpdfdoc.cpp174 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArray("Annots"); in FPDFLink_Enumerate() local
175 if(!pAnnots) return FALSE; in FPDFLink_Enumerate()
176 for (int i = *startPos; i < (int)pAnnots->GetCount(); i ++) { in FPDFLink_Enumerate()
177 CPDF_Dictionary* pDict = (CPDF_Dictionary*)pAnnots->GetElementValue(i); in FPDFLink_Enumerate()
Dfpdf_flatten.cpp92 CPDF_Array* pAnnots = pPageDic->GetArray("Annots"); in ParserAnnots() local
93 if (pAnnots) in ParserAnnots()
95 FX_DWORD dwSize = pAnnots->GetCount(); in ParserAnnots()
99 CPDF_Object* pObj = pAnnots->GetElementValue(i); in ParserAnnots()
Dfsdk_baseform.cpp1828 if (CPDF_Array* pAnnots = pPageDict->GetArray("Annots")) in GetPageIndexByAnnotDict() local
1830 for (int j=0,jsz=pAnnots->GetCount(); j<jsz; j++) in GetPageIndexByAnnotDict()
1832 CPDF_Object* pDict = pAnnots->GetElementValue(j); in GetPageIndexByAnnotDict()
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_parser.cpp4101 CPDF_Object *pAnnots = pPageDict->GetElement(FX_BSTRC("Annots")); in CheckPageAnnots() local
4102 if (!pAnnots) { in CheckPageAnnots()
4106 obj_array.Add(pAnnots); in CheckPageAnnots()