Home
last modified time | relevance | path

Searched refs:m_pAnnot (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/fpdfsdk/
Dcpdfsdk_baannot.cpp25 : CPDFSDK_Annot(pPageView), m_pAnnot(pAnnot) {} in CPDFSDK_BAAnnot()
30 return m_pAnnot; in GetPDFAnnot()
34 return m_pAnnot->GetPopupAnnot(); in GetPDFPopupAnnot()
38 return m_pAnnot->GetAnnotDict(); in GetAnnotDict()
45 m_pAnnot->GetAnnotDict()->SetRectFor("Rect", rect); in SetRect()
49 return m_pAnnot->GetRect(); in GetRect()
53 return m_pAnnot->GetSubtype(); in GetAnnotSubtype()
60 m_pAnnot->DrawAppearance(m_pPageView->GetPDFPage(), pDevice, pUser2Device, in DrawAppearance()
65 return !!m_pAnnot->GetAnnotDict()->GetDictFor("AP"); in IsAppearanceValid()
69 CPDF_Dictionary* pAP = m_pAnnot->GetAnnotDict()->GetDictFor("AP"); in IsAppearanceValid()
[all …]
Dcpdfsdk_baannot.h103 CPDF_Annot* const m_pAnnot;
Dcpdfsdk_widget.cpp464 CPDF_Dictionary* pAP = m_pAnnot->GetAnnotDict()->GetDictFor("AP"); in IsWidgetAppearanceValid()
522 pPDFInterForm->GetControlByDict(m_pAnnot->GetAnnotDict()); in GetFieldFlags()
790 m_pAnnot->ClearCachedAP();
1790 CPDF_Dictionary* pAPDict = m_pAnnot->GetAnnotDict()->GetDictFor("AP");
1812 if (CPDF_Dictionary* pAPDict = m_pAnnot->GetAnnotDict()->GetDictFor("AP"))
/external/pdfium/fpdfsdk/javascript/
DAnnot.cpp42 if (!m_pAnnot) { in hidden()
46 CPDF_Annot* pPDFAnnot = ToBAAnnot(m_pAnnot.Get())->GetPDFAnnot(); in hidden()
53 if (!m_pAnnot) { in hidden()
58 uint32_t flags = ToBAAnnot(m_pAnnot.Get())->GetFlags(); in hidden()
70 ToBAAnnot(m_pAnnot.Get())->SetFlags(flags); in hidden()
78 if (!m_pAnnot) { in name()
82 vp << ToBAAnnot(m_pAnnot.Get())->GetAnnotName(); in name()
88 if (!m_pAnnot) { in name()
93 ToBAAnnot(m_pAnnot.Get())->SetAnnotName(annotName); in name()
104 if (!m_pAnnot) { in type()
[all …]
DAnnot.h27 CPDFSDK_Annot::ObservedPtr m_pAnnot;
/external/pdfium/fpdfsdk/formfiller/
Dcffl_formfiller.h142 CPDFSDK_Annot* GetSDKAnnot() { return m_pAnnot; } in GetSDKAnnot()
157 CPDFSDK_Annot* m_pAnnot; variable
Dcffl_formfiller.cpp26 : m_pFormFillEnv(pFormFillEnv), m_pAnnot(pAnnot), m_bValid(false) { in CFFL_FormFiller()
450 UnderlyingPageType* pPage = m_pAnnot->GetUnderlyingPage(); in GetCurPageView()