Lines Matching refs:pAnnots
237 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArrayFor("Annots"); in FPDFPage_GetAnnotCount() local
238 return pAnnots ? pAnnots->GetCount() : 0; in FPDFPage_GetAnnotCount()
247 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArrayFor("Annots"); in FPDFPage_GetAnnot() local
248 if (!pAnnots || static_cast<size_t>(index) >= pAnnots->GetCount()) in FPDFPage_GetAnnot()
251 CPDF_Dictionary* pDict = ToDictionary(pAnnots->GetDirectObjectAt(index)); in FPDFPage_GetAnnot()
263 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArrayFor("Annots"); in FPDFPage_GetAnnotIndex() local
264 if (!pAnnots) in FPDFPage_GetAnnotIndex()
269 std::find_if(pAnnots->begin(), pAnnots->end(), in FPDFPage_GetAnnotIndex()
274 if (it == pAnnots->end()) in FPDFPage_GetAnnotIndex()
277 return it - pAnnots->begin(); in FPDFPage_GetAnnotIndex()
290 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArrayFor("Annots"); in FPDFPage_RemoveAnnot() local
291 if (!pAnnots || static_cast<size_t>(index) >= pAnnots->GetCount()) in FPDFPage_RemoveAnnot()
294 pAnnots->RemoveAt(index); in FPDFPage_RemoveAnnot()