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

  /external/pdfium/core/fpdfdoc/
cpdf_formfield.h 113 bool ResetField(bool bNotify = false);
136 bool SetValue(const WideString& value, bool bNotify = false);
142 bool ClearSelection(bool bNotify = false);
144 bool SetItemSelection(int index, bool bSelected, bool bNotify = false);
157 bool CheckControl(int iControlIndex, bool bChecked, bool bNotify = false);
165 bool SelectOption(int iOptIndex, bool bSelected, bool bNotify = false);
167 bool ClearSelectedOptions(bool bNotify = false);
170 bool ClearOptions(bool bNotify = false);
172 int InsertOption(WideString csOptLabel, int index = -1, bool bNotify = false);
193 bool SetValue(const WideString& value, bool bDefault, bool bNotify);
    [all...]
cpdf_formfield.cpp 164 bool CPDF_FormField::ResetField(bool bNotify) {
180 if (bNotify && m_pForm->GetFormNotify())
192 if (bNotify && !NotifyListOrComboBoxBeforeChange(csValue))
196 if (bNotify)
218 if (bNotify && !NotifyBeforeValueChange(csDValue))
233 if (bNotify)
343 bool bNotify) {
347 SetCheckValue(value, bDefault, bNotify);
355 if (bNotify && !NotifyBeforeValueChange(csValue))
373 if (bNotify)
    [all...]
cpdf_interform.h 85 bool bNotify);
86 bool ResetForm(bool bNotify);
103 bool bNotify = false,
cpdf_interform.cpp 903 bool bNotify) {
904 if (bNotify && m_pFormNotify && m_pFormNotify->BeforeFormReset(this) < 0)
914 pField->ResetField(bNotify);
916 if (bNotify && m_pFormNotify)
921 bool CPDF_InterForm::ResetForm(bool bNotify) {
922 if (bNotify && m_pFormNotify && m_pFormNotify->BeforeFormReset(this) < 0)
931 pField->ResetField(bNotify);
933 if (bNotify && m_pFormNotify)
    [all...]
  /external/pdfium/fxjs/xfa/
cjx_object.h 79 bool bNotify);
82 bool bNotify);
93 bool bNotify,
112 bool bNotify,
180 bool SetInteger(XFA_Attribute eAttr, int32_t iValue, bool bNotify);
186 bool bNotify,
191 bool SetEnum(XFA_Attribute eAttr, XFA_AttributeEnum eValue, bool bNotify);
195 bool SetBoolean(XFA_Attribute eAttr, bool bValue, bool bNotify);
201 bool SetMeasure(XFA_Attribute eAttr, CXFA_Measurement mValue, bool bNotify);
241 void OnChanged(XFA_Attribute eAttr, bool bNotify, bool bScriptModify)
    [all...]
cjx_object.cpp 221 bool bNotify) {
229 bNotify);
232 return SetCData(eAttr, WideString(wsValue), bNotify, false);
234 return SetBoolean(eAttr, wsValue != L"0", bNotify);
239 bNotify);
241 return SetMeasure(eAttr, CXFA_Measurement(wsValue), bNotify);
255 bool bNotify) {
258 return SetAttribute(attr, wsValue, bNotify);
342 bool CJX_Object::SetBoolean(XFA_Attribute eAttr, bool bValue, bool bNotify) {
344 (void*)(uintptr_t)bValue, bNotify);
    [all...]
  /external/pdfium/fpdfsdk/
cpdfsdk_widget.h 102 void SetCheck(bool bChecked, bool bNotify);
103 void SetValue(const WideString& sValue, bool bNotify);
105 void SetOptionSelection(int index, bool bSelected, bool bNotify);
106 void ClearSelection(bool bNotify);
cpdfsdk_widget.cpp 683 void CPDFSDK_Widget::SetCheck(bool bChecked, bool bNotify) {
687 bNotify);
691 if (!bNotify)
696 void CPDFSDK_Widget::SetValue(const WideString& sValue, bool bNotify) {
698 pFormField->SetValue(sValue, bNotify);
700 if (!bNotify)
708 bool bNotify) {
710 pFormField->SetItemSelection(index, bSelected, bNotify);
712 if (!bNotify)
717 void CPDFSDK_Widget::ClearSelection(bool bNotify) {
    [all...]
  /external/pdfium/xfa/fxfa/
cxfa_widgetacc.h 121 void SetCheckState(XFA_CHECKSTATE eCheckState, bool bNotify);
124 CXFA_Node* SetSelectedMember(const WideStringView& wsName, bool bNotify);
126 bool bNotify,
144 bool bNotify,
149 bool bNotify);
150 bool DeleteItem(int32_t nIndex, bool bNotify, bool bScriptModify);
156 bool bNotify,
cxfa_widgetacc.cpp     [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_node.h 100 void SetFlag(uint32_t dwFlag, bool bNotify);
170 bool RemoveChild(CXFA_Node* pNode, bool bNotify);
230 void SyncValue(const WideString& wsValue, bool bNotify);
337 void OnRemoved(bool bNotify);
cxfa_node.cpp 914 bool CXFA_Node::RemoveChild(CXFA_Node* pNode, bool bNotify) {
936 OnRemoved(bNotify);
    [all...]

Completed in 90 milliseconds