Home | History | Annotate | Download | only in fpdfsdk

Lines Matching refs:pAnnot

17 CFX_FloatRect GetAnnotRect(const CPDFSDK_Annot* pAnnot) {
18 return pAnnot->GetPDFAnnot()->GetRect();
56 CPDFSDK_Annot* CBA_AnnotIterator::GetNextAnnot(CPDFSDK_Annot* pAnnot) {
57 auto iter = std::find(m_Annots.begin(), m_Annots.end(), pAnnot);
66 CPDFSDK_Annot* CBA_AnnotIterator::GetPrevAnnot(CPDFSDK_Annot* pAnnot) {
67 auto iter = std::find(m_Annots.begin(), m_Annots.end(), pAnnot);
76 for (auto pAnnot : m_pPageView->GetAnnotList()) {
77 if (pAnnot->GetAnnotSubtype() == m_nAnnotSubtype &&
78 !pAnnot->IsSignatureWidget()) {
79 pArray->push_back(pAnnot);