Lines Matching refs:wsValue
218 WideStringView wsValue, in SetAttribute() argument
222 Optional<XFA_AttributeValue> item = XFA_GetAttributeValueByName(wsValue); in SetAttribute()
229 SetCData(eAttr, WideString(wsValue), bNotify, false); in SetAttribute()
232 SetBoolean(eAttr, !wsValue.EqualsASCII("0"), bNotify); in SetAttribute()
236 FXSYS_roundf(FXSYS_wcstof(wsValue.unterminated_c_str(), in SetAttribute()
237 wsValue.GetLength(), nullptr)), in SetAttribute()
241 SetMeasure(eAttr, CXFA_Measurement(wsValue), bNotify); in SetAttribute()
248 void CJX_Object::SetMapModuleString(void* pKey, WideStringView wsValue) { in SetMapModuleString() argument
249 SetMapModuleBuffer(pKey, const_cast<wchar_t*>(wsValue.unterminated_c_str()), in SetMapModuleString()
250 wsValue.GetLength() * sizeof(wchar_t), nullptr); in SetMapModuleString()
254 WideStringView wsValue, in SetAttribute() argument
258 SetAttribute(attr.value().attribute, wsValue, bNotify); in SetAttribute()
262 SetMapModuleString(pKey, wsValue); in SetAttribute()
440 const WideString& wsValue, in SetCData() argument
447 WideString* pClone = new WideString(wsValue); in SetCData()
450 SetMapModuleString(pKey, wsValue.AsStringView()); in SetCData()
468 xfaObj->SetToXML(wsValue); in SetCData()
477 elem->SetAttribute(wsAttrName, wsValue); in SetCData()
481 void CJX_Object::SetAttributeValue(const WideString& wsValue, in SetAttributeValue() argument
490 WideString* pClone = new WideString(wsValue); in SetAttributeValue()
1025 WideString wsValue = ToNode(pDstModule)->JSObject()->GetContent(false); in MoveBufferMapData() local
1026 WideString wsFormatValue(wsValue); in MoveBufferMapData()
1029 wsFormatValue = pNode->GetFormatDataValue(wsValue); in MoveBufferMapData()
1033 ->SetContent(wsValue, wsFormatValue, true, true, true); in MoveBufferMapData()
1084 WideString wsValue = pValue->ToWideString(); in ScriptAttributeString() local
1085 SetAttribute(eAttribute, wsValue.AsStringView(), true); in ScriptAttributeString()
1101 if (!wsValue.IsEmpty()) { in ScriptAttributeString()
1102 if (wsValue[0] == '#') in ScriptAttributeString()
1103 wsID = wsValue.Substr(1, wsValue.GetLength() - 1); in ScriptAttributeString()
1105 wsSOM = std::move(wsValue); in ScriptAttributeString()