Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/
Dfpdf_annot.cpp312 CPDF_Array* pAnnots = pPage->GetDict()->GetArrayFor("Annots"); in FPDFPage_GetAnnotCount() local
313 return pAnnots ? pAnnots->size() : 0; in FPDFPage_GetAnnotCount()
322 CPDF_Array* pAnnots = pPage->GetDict()->GetArrayFor("Annots"); in FPDFPage_GetAnnot() local
323 if (!pAnnots || static_cast<size_t>(index) >= pAnnots->size()) in FPDFPage_GetAnnot()
326 CPDF_Dictionary* pDict = ToDictionary(pAnnots->GetDirectObjectAt(index)); in FPDFPage_GetAnnot()
346 CPDF_Array* pAnnots = pPage->GetDict()->GetArrayFor("Annots"); in FPDFPage_GetAnnotIndex() local
347 if (!pAnnots) in FPDFPage_GetAnnotIndex()
350 CPDF_ArrayLocker locker(pAnnots); in FPDFPage_GetAnnotIndex()
372 CPDF_Array* pAnnots = pPage->GetDict()->GetArrayFor("Annots"); in FPDFPage_RemoveAnnot() local
373 if (!pAnnots || static_cast<size_t>(index) >= pAnnots->size()) in FPDFPage_RemoveAnnot()
[all …]
Dfpdf_doc.cpp346 CPDF_Array* pAnnots = pPage->GetDict()->GetArrayFor("Annots"); in FPDFLink_Enumerate() local
347 if (!pAnnots) in FPDFLink_Enumerate()
349 for (size_t i = *start_pos; i < pAnnots->size(); i++) { in FPDFLink_Enumerate()
350 CPDF_Dictionary* pDict = ToDictionary(pAnnots->GetDirectObjectAt(i)); in FPDFLink_Enumerate()
Dfpdf_flatten.cpp91 CPDF_Array* pAnnots = pPageDic->GetArrayFor("Annots"); in ParserAnnots() local
92 if (!pAnnots) in ParserAnnots()
95 CPDF_ArrayLocker locker(pAnnots); in ParserAnnots()
Dcpdfsdk_interactiveform.cpp185 if (CPDF_Array* pAnnots = pPageDict->GetArrayFor("Annots")) { in GetPageIndexByAnnotDict() local
186 for (int j = 0, jsz = pAnnots->size(); j < jsz; j++) { in GetPageIndexByAnnotDict()
187 CPDF_Object* pDict = pAnnots->GetDirectObjectAt(j); in GetPageIndexByAnnotDict()
/external/pdfium/core/fpdfdoc/
Dcpdf_annotlist.cpp175 CPDF_Array* pAnnots = pPage->GetDict()->GetArrayFor("Annots"); in CPDF_AnnotList() local
176 if (!pAnnots) in CPDF_AnnotList()
183 for (size_t i = 0; i < pAnnots->size(); ++i) { in CPDF_AnnotList()
184 CPDF_Dictionary* pDict = ToDictionary(pAnnots->GetDirectObjectAt(i)); in CPDF_AnnotList()
194 pAnnots->ConvertToIndirectObjectAt(i, m_pDocument.Get()); in CPDF_AnnotList()
Dcpdf_interactiveform.cpp882 CPDF_Array* pAnnots = pPage->GetDict()->GetArrayFor("Annots"); in FixPageFields() local
883 if (!pAnnots) in FixPageFields()
886 for (size_t i = 0; i < pAnnots->size(); i++) { in FixPageFields()
887 CPDF_Dictionary* pAnnot = pAnnots->GetDictAt(i); in FixPageFields()