HomeSort by relevance Sort by last modified time
    Searched refs:m_pInterForm (Results 1 - 8 of 8) sorted by null

  /external/pdfium/fpdfsdk/
cpdfsdk_xfawidget.h 30 CPDFSDK_InterForm* GetInterForm() { return m_pInterForm; }
33 CPDFSDK_InterForm* m_pInterForm;
cpdfsdk_xfawidget.cpp 16 m_pInterForm(pInterForm),
cpdfsdk_interform.cpp 50 m_pInterForm(new CPDF_InterForm(m_pFormFillEnv->GetPDFDocument())),
58 m_pInterForm->SetFormNotify(this);
86 if (!pControl || !m_pInterForm)
121 for (int i = 0, sz = m_pInterForm->CountFields(sFieldName); i < sz; ++i) {
122 CPDF_FormField* pFormField = m_pInterForm->GetField(i, sFieldName);
234 int nSize = m_pInterForm->CountFieldsInCalculationOrder();
236 CPDF_FormField* pField = m_pInterForm->GetFieldInCalculationOrder(i);
424 if (!m_pInterForm->CheckRequiredFields(&fields, bIncludeOrExclude))
430 if (!m_pInterForm->CheckRequiredFields(nullptr, true))
505 m_pInterForm->ExportToFDF(m_pFormFillEnv->JS_docGetFilePath().AsStringC()
    [all...]
cpdfsdk_interform.h 37 CPDF_InterForm* GetInterForm() const { return m_pInterForm.get(); }
125 std::unique_ptr<CPDF_InterForm> m_pInterForm;
cpdfsdk_widget.h 120 CPDFSDK_InterForm* GetInterForm() const { return m_pInterForm; }
163 CPDFSDK_InterForm* const m_pInterForm;
cpdfsdk_widget.cpp 59 m_pInterForm(pInterForm),
520 CPDF_InterForm* pPDFInterForm = m_pInterForm->GetInterForm();
537 CPDF_InterForm* pPDFInterForm = m_pInterForm->GetInterForm();
796 return m_pInterForm->OnFormat(pFormField, bFormatted);
802 m_pInterForm->ResetFieldAppearance(pFormField, nullptr, bValueChanged);
835 m_pInterForm->UpdateField(pFormField);
841 if (!m_pInterForm->IsNeedHighLight(nFieldType))
860 &rcDev, ArgbEncode(static_cast<int>(m_pInterForm->GetHighlightAlpha()),
861 m_pInterForm->GetHighlightColor(nFieldType)));
992 CBA_FontMap font_map(this, m_pInterForm->GetFormFillEnv()->GetSysHandler())
    [all...]
cpdfsdk_formfillenvironment.h 211 std::unique_ptr<CPDFSDK_InterForm> m_pInterForm;
cpdfsdk_formfillenvironment.cpp 46 // |m_PageMap| will try to access |m_pInterForm| when it cleans itself up.
47 // Make sure it is deleted before |m_pInterForm|.
680 if (!m_pInterForm)
681 m_pInterForm = pdfium::MakeUnique<CPDFSDK_InterForm>(this);
682 return m_pInterForm.get();

Completed in 988 milliseconds