Searched refs:bNotify (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/fxjs/xfa/ |
D | cjx_object.h | 120 void SetAttribute(XFA_Attribute eAttr, WideStringView wsValue, bool bNotify); 123 bool bNotify); 133 bool bNotify, 152 bool bNotify, 180 void SetInteger(XFA_Attribute eAttr, int32_t iValue, bool bNotify); 186 bool bNotify, 192 void SetEnum(XFA_Attribute eAttr, XFA_AttributeValue eValue, bool bNotify); 196 void SetBoolean(XFA_Attribute eAttr, bool bValue, bool bNotify); 202 void SetMeasure(XFA_Attribute eAttr, CXFA_Measurement mValue, bool bNotify); 235 void OnChanged(XFA_Attribute eAttr, bool bNotify, bool bScriptModify); [all …]
|
D | cjx_object.cpp | 219 bool bNotify) { in SetAttribute() argument 225 bNotify); in SetAttribute() 229 SetCData(eAttr, WideString(wsValue), bNotify, false); in SetAttribute() 232 SetBoolean(eAttr, !wsValue.EqualsASCII("0"), bNotify); in SetAttribute() 238 bNotify); in SetAttribute() 241 SetMeasure(eAttr, CXFA_Measurement(wsValue), bNotify); in SetAttribute() 255 bool bNotify) { in SetAttribute() argument 258 SetAttribute(attr.value().attribute, wsValue, bNotify); in SetAttribute() 334 void CJX_Object::SetBoolean(XFA_Attribute eAttr, bool bValue, bool bNotify) { in SetBoolean() argument 335 CFX_XMLElement* elem = SetValue(eAttr, (void*)(uintptr_t)bValue, bNotify); in SetBoolean() [all …]
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_node.h | 170 void RemoveChildAndNotify(CXFA_Node* pNode, bool bNotify); 323 void SetCheckState(XFA_CHECKSTATE eCheckState, bool bNotify); 326 CXFA_Node* SetSelectedMember(WideStringView wsName, bool bNotify); 328 bool bNotify, 347 bool bNotify, 352 bool bNotify); 353 bool DeleteItem(int32_t nIndex, bool bNotify, bool bScriptModify); 359 bool bNotify, 419 void OnRemoved(bool bNotify) const; 467 void SyncValue(const WideString& wsValue, bool bNotify);
|
D | cxfa_node.cpp | 1570 void CXFA_Node::RemoveChildAndNotify(CXFA_Node* pNode, bool bNotify) { in RemoveChildAndNotify() argument 1577 OnRemoved(bNotify); in RemoveChildAndNotify() 1777 void CXFA_Node::OnRemoved(bool bNotify) const { in OnRemoved() 1778 if (!bNotify) in OnRemoved() 2194 void CXFA_Node::SyncValue(const WideString& wsValue, bool bNotify) { in SyncValue() argument 2200 JSObject()->SetContent(wsValue, wsFormatValue, bNotify, false, true); in SyncValue() 3975 void CXFA_Node::SetCheckState(XFA_CHECKSTATE eCheckState, bool bNotify) { in SetCheckState() argument 3993 SyncValue(wsContent, bNotify); in SetCheckState() 4030 pChild->SyncValue(wsChildValue, bNotify); in SetCheckState() 4032 node->SyncValue(wsValue, bNotify); in SetCheckState() [all …]
|