Home
last modified time | relevance | path

Searched refs:FormFiller (Results 1 – 5 of 5) sorted by relevance

/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/
Dform_filler.cc94 FormFiller::FormFiller(Document* document, FPDF_DOCUMENT fpdf_document) : document_(document) { in FormFiller() function in pdfClient::FormFiller
101 FormFiller::~FormFiller() {} in ~FormFiller()
103 bool FormFiller::RenderTile(FPDF_PAGE page, FPDF_BITMAP bitmap, FS_MATRIX transform, FS_RECTF clip, in RenderTile()
113 void FormFiller::NotifyAfterPageLoad(FPDF_PAGE page) { in NotifyAfterPageLoad()
117 void FormFiller::NotifyBeforePageClose(FPDF_PAGE page) { in NotifyBeforePageClose()
121 FormWidgetInfo FormFiller::GetFormWidgetInfo(FPDF_PAGE page, const Point_d point) { in GetFormWidgetInfo()
126 FormWidgetInfo FormFiller::GetFormWidgetInfo(FPDF_PAGE page, const int annotation_index) { in GetFormWidgetInfo()
131 FormWidgetInfo FormFiller::GetFormWidgetInfo(FPDF_PAGE page, FPDF_ANNOTATION annotation) { in GetFormWidgetInfo()
193 void FormFiller::GetFormWidgetInfos(FPDF_PAGE page, const std::unordered_set<int>& type_ids, in GetFormWidgetInfos()
215 bool FormFiller::ClickOnPoint(FPDF_PAGE page, const Point_d point) { in ClickOnPoint()
[all …]
Dform_filler.h37 class FormFiller : public FPDF_FORMFILLINFO {
39 explicit FormFiller(Document* document, FPDF_DOCUMENT fpdf_document);
41 ~FormFiller();
Dpage.h87 Page(FPDF_DOCUMENT doc, int page_num, FormFiller* form_filler);
312 FormFiller* const form_filler_; // Not owned.
Ddocument.h134 FormFiller form_filler_;
Dpage.cc58 Page::Page(FPDF_DOCUMENT doc, int page_num, FormFiller* form_filler) in Page()