/external/pdfium/core/src/fpdfdoc/ |
D | doc_formfield.cpp | 103 FX_BOOL CPDF_FormField::ResetField(FX_BOOL bNotify) in ResetField() argument 109 if (bNotify && m_pForm->m_pFormNotify != NULL) { in ResetField() 126 if (bNotify && m_pForm->m_pFormNotify != NULL) { in ResetField() 138 if (bNotify && m_pForm->m_pFormNotify != NULL) { in ResetField() 145 if (bNotify && m_pForm->m_pFormNotify != NULL) { in ResetField() 157 if (bNotify && m_pForm->m_pFormNotify != NULL) { in ResetField() 164 if (bNotify && m_pForm->m_pFormNotify != NULL) { in ResetField() 187 if (bNotify && m_pForm->m_pFormNotify != NULL) { in ResetField() 207 if (bNotify && m_pForm->m_pFormNotify != NULL) { in ResetField() 342 FX_BOOL CPDF_FormField::SetValue(const CFX_WideString& value, FX_BOOL bDefault, FX_BOOL bNotify) in SetValue() argument [all …]
|
D | doc_form.cpp | 1147 …L CPDF_InterForm::ResetForm(const CFX_PtrArray& fields, FX_BOOL bIncludeOrExclude, FX_BOOL bNotify) in ResetForm() argument 1149 if (bNotify && m_pFormNotify != NULL) { in ResetForm() 1170 pField->ResetField(bNotify); in ResetForm() 1173 if (bNotify && m_pFormNotify != NULL) { in ResetForm() 1178 FX_BOOL CPDF_InterForm::ResetForm(FX_BOOL bNotify) in ResetForm() argument 1180 if (bNotify && m_pFormNotify != NULL) { in ResetForm() 1192 pField->ResetField(bNotify); in ResetForm() 1194 if (bNotify && m_pFormNotify != NULL) { in ResetForm() 1499 …tField(CPDF_Dictionary* pFieldDict, const CFX_WideString& parent_name, FX_BOOL bNotify, int nLevel) in FDF_ImportField() argument 1514 FDF_ImportField(pKid, name, bNotify, nLevel + 1); in FDF_ImportField() [all …]
|
/external/pdfium/core/include/fpdfdoc/ |
D | fpdf_doc.h | 940 FX_BOOL ImportFromFDF(const CFDF_Document* pFDFDoc, FX_BOOL bNotify = FALSE); 945 … ResetForm(const CFX_PtrArray& fields, FX_BOOL bIncludeOrExclude = TRUE, FX_BOOL bNotify = FALSE); 947 FX_BOOL ResetForm(FX_BOOL bNotify = FALSE); 989 …ield(CPDF_Dictionary* pField, const CFX_WideString& parent_name, FX_BOOL bNotify = FALSE, int nLev… 1070 FX_BOOL ResetField(FX_BOOL bNotify = FALSE); 1127 FX_BOOL SetValue(const CFX_WideString& value, FX_BOOL bNotify = FALSE); 1142 FX_BOOL ClearSelection(FX_BOOL bNotify = FALSE); 1146 FX_BOOL SetItemSelection(int index, FX_BOOL bSelected, FX_BOOL bNotify = FALSE); 1168 FX_BOOL CheckControl(int iControlIndex, FX_BOOL bChecked, FX_BOOL bNotify = FALSE); 1184 FX_BOOL SelectOption(int iOptIndex, FX_BOOL bSelected, FX_BOOL bNotify = FALSE); [all …]
|
/external/pdfium/fpdfsdk/include/ |
D | fsdk_baseform.h | 104 void SetCheck(FX_BOOL bChecked, FX_BOOL bNotify); 105 void SetValue(const CFX_WideString& sValue, FX_BOOL bNotify); 107 void SetOptionSelection(int index, FX_BOOL bSelected, FX_BOOL bNotify); 108 void ClearSelection(FX_BOOL bNotify);
|
/external/pdfium/fpdfsdk/include/pdfwindow/ |
D | PWL_IconList.h | 69 void EnableNotify(FX_BOOL bNotify); 109 void EnableNotify(FX_BOOL bNotify);
|
/external/pdfium/fpdfsdk/src/pdfwindow/ |
D | PWL_IconList.cpp | 336 void CPWL_IconList_Content::EnableNotify(FX_BOOL bNotify) in EnableNotify() argument 338 m_bEnableNotify = bNotify; in EnableNotify() 525 void CPWL_IconList::EnableNotify(FX_BOOL bNotify) in EnableNotify() argument 527 m_pListContent->EnableNotify(bNotify); in EnableNotify()
|
/external/pdfium/fpdfsdk/src/ |
D | fsdk_baseform.cpp | 298 void CPDFSDK_Widget::SetCheck(FX_BOOL bChecked, FX_BOOL bNotify) in SetCheck() argument 306 pFormField->CheckControl(pFormField->GetControlIndex(pFormCtrl), bChecked, bNotify); in SetCheck() 309 void CPDFSDK_Widget::SetValue(const CFX_WideString& sValue, FX_BOOL bNotify) in SetValue() argument 314 pFormField->SetValue(sValue, bNotify); in SetValue() 320 void CPDFSDK_Widget::SetOptionSelection(int index, FX_BOOL bSelected, FX_BOOL bNotify) in SetOptionSelection() argument 325 pFormField->SetItemSelection(index, bSelected, bNotify); in SetOptionSelection() 328 void CPDFSDK_Widget::ClearSelection(FX_BOOL bNotify) in ClearSelection() argument 333 pFormField->ClearSelection(bNotify); in ClearSelection()
|
/external/pdfium/fpdfsdk/include/fxedit/ |
D | fx_edit.h | 347 virtual void EnableNotify(FX_BOOL bNotify) = 0; 350 virtual void EnableOprNotify(FX_BOOL bNotify) = 0;
|
D | fxet_edit.h | 680 void EnableNotify(FX_BOOL bNotify); 724 void EnableOprNotify(FX_BOOL bNotify);
|
/external/pdfium/fpdfsdk/src/fxedit/ |
D | fxet_edit.cpp | 3467 void CFX_Edit::EnableNotify(FX_BOOL bNotify) in EnableNotify() argument 3469 this->m_bNotify = bNotify; in EnableNotify() 3472 void CFX_Edit::EnableOprNotify(FX_BOOL bNotify) in EnableOprNotify() argument 3474 this->m_bOprNotify = bNotify; in EnableOprNotify()
|