Searched refs:eAttr (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/fxjs/xfa/ |
D | cjx_object.h | 119 bool HasAttribute(XFA_Attribute eAttr); 120 void SetAttribute(XFA_Attribute eAttr, WideStringView wsValue, bool bNotify); 128 Optional<WideString> TryAttribute(XFA_Attribute eAttr, bool bUseDefault); 179 Optional<int32_t> TryInteger(XFA_Attribute eAttr, bool bUseDefault) const; 180 void SetInteger(XFA_Attribute eAttr, int32_t iValue, bool bNotify); 181 int32_t GetInteger(XFA_Attribute eAttr) const; 183 Optional<WideString> TryCData(XFA_Attribute eAttr, bool bUseDefault) const; 184 void SetCData(XFA_Attribute eAttr, 188 WideString GetCData(XFA_Attribute eAttr) const; 190 Optional<XFA_AttributeValue> TryEnum(XFA_Attribute eAttr, [all …]
|
D | cjx_object.cpp | 212 bool CJX_Object::HasAttribute(XFA_Attribute eAttr) { in HasAttribute() argument 213 void* pKey = GetMapKey_Element(GetXFAObject()->GetElementType(), eAttr); in HasAttribute() 217 void CJX_Object::SetAttribute(XFA_Attribute eAttr, in SetAttribute() argument 220 switch (ToNode(GetXFAObject())->GetAttributeType(eAttr)) { in SetAttribute() 223 SetEnum(eAttr, in SetAttribute() 224 item ? *item : *(ToNode(GetXFAObject())->GetDefaultEnum(eAttr)), in SetAttribute() 229 SetCData(eAttr, WideString(wsValue), bNotify, false); in SetAttribute() 232 SetBoolean(eAttr, !wsValue.EqualsASCII("0"), bNotify); in SetAttribute() 235 SetInteger(eAttr, in SetAttribute() 241 SetMeasure(eAttr, CXFA_Measurement(wsValue), bNotify); in SetAttribute() [all …]
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_ffnotify.cpp | 338 void CXFA_FFNotify::OnValueChanging(CXFA_Node* pSender, XFA_Attribute eAttr) { in OnValueChanging() argument 339 if (eAttr != XFA_Attribute::Presence) in OnValueChanging() 360 XFA_Attribute eAttr, in OnValueChanged() argument 368 if (eAttr == XFA_Attribute::Value) in OnValueChanged() 393 if (bIsContainerNode && eAttr == XFA_Attribute::Access) in OnValueChanged() 396 if (eAttr == XFA_Attribute::Value) { in OnValueChanged()
|
D | cxfa_ffnotify.h | 37 void OnValueChanging(CXFA_Node* pSender, XFA_Attribute eAttr); 39 XFA_Attribute eAttr,
|