OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_pInterForm
(Results
1 - 8
of
8
) sorted by null
/external/pdfium/fpdfsdk/
cpdfsdk_xfawidget.h
32
CPDFSDK_InterForm* GetInterForm() const { return
m_pInterForm
.Get(); }
35
UnownedPtr<CPDFSDK_InterForm>
m_pInterForm
;
cpdfsdk_xfawidget.cpp
16
m_pInterForm
(pInterForm),
cpdfsdk_widget.h
121
CPDFSDK_InterForm* GetInterForm() const { return
m_pInterForm
.Get(); }
150
UnownedPtr<CPDFSDK_InterForm> const
m_pInterForm
;
cpdfsdk_interform.cpp
81
m_pInterForm
(
90
m_pInterForm
->SetFormNotify(this);
117
if (!pControl || !
m_pInterForm
)
152
for (int i = 0, sz =
m_pInterForm
->CountFields(sFieldName); i < sz; ++i) {
153
CPDF_FormField* pFormField =
m_pInterForm
->GetField(i, sFieldName);
265
int nSize =
m_pInterForm
->CountFieldsInCalculationOrder();
267
CPDF_FormField* pField =
m_pInterForm
->GetFieldInCalculationOrder(i);
457
if (!
m_pInterForm
->CheckRequiredFields(&fields, bIncludeOrExclude))
463
if (!
m_pInterForm
->CheckRequiredFields(nullptr, true))
545
std::unique_ptr<CFDF_Document> pFDF =
m_pInterForm
->ExportToFDF
[
all
...]
cpdfsdk_interform.h
37
CPDF_InterForm* GetInterForm() const { return
m_pInterForm
.get(); }
125
std::unique_ptr<CPDF_InterForm>
m_pInterForm
;
cpdfsdk_widget.cpp
60
m_pInterForm
(pInterForm),
524
CPDF_InterForm* pPDFInterForm =
m_pInterForm
->GetInterForm();
541
CPDF_InterForm* pPDFInterForm =
m_pInterForm
->GetInterForm();
795
return
m_pInterForm
->OnFormat(pFormField, bFormatted);
801
m_pInterForm
->ResetFieldAppearance(pFormField, nullptr, bValueChanged);
834
m_pInterForm
->UpdateField(pFormField);
840
if (!
m_pInterForm
->IsNeedHighLight(fieldType))
859
&rcDev, ArgbEncode(static_cast<int>(
m_pInterForm
->GetHighlightAlpha()),
860
m_pInterForm
->GetHighlightColor(fieldType)));
cpdfsdk_formfillenvironment.h
228
std::unique_ptr<CPDFSDK_InterForm>
m_pInterForm
;
cpdfsdk_formfillenvironment.cpp
47
// |m_PageMap| will try to access |
m_pInterForm
| when it cleans itself up.
48
// Make sure it is deleted before |
m_pInterForm
|.
653
if (!
m_pInterForm
)
654
m_pInterForm
= pdfium::MakeUnique<CPDFSDK_InterForm>(this);
655
return
m_pInterForm
.get();
Completed in 393 milliseconds