Home
last modified time | relevance | path

Searched refs:wsAttr (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/xfa/fxfa/
Dcxfa_textparser.h100 void SetAttribute(const WideString& wsAttr, const WideString& wsValue) { in SetAttribute() argument
101 m_Attributes.insert({wsAttr, wsValue}); in SetAttribute()
104 WideString GetAttribute(const WideString& wsAttr) { in GetAttribute() argument
105 return m_Attributes[wsAttr]; in GetAttribute()
Dcxfa_textprovider.cpp142 const WideString& wsAttr) const { in GetEmbeddedObj()
150 pIDNode = pDocument->GetNodeByID(pParent, wsAttr.AsStringView()); in GetEmbeddedObj()
155 wsAttr.AsStringView()); in GetEmbeddedObj()
Dcxfa_textparser.cpp520 WideString wsAttr = pElement->GetAttribute(L"xfa:embed"); in GetEmbeddedObj() local
521 if (wsAttr.IsEmpty()) in GetEmbeddedObj()
524 if (wsAttr[0] == L'#') in GetEmbeddedObj()
525 wsAttr.Delete(0); in GetEmbeddedObj()
537 return pTextProvider->GetEmbeddedObj(wsAttr); in GetEmbeddedObj()
Dcxfa_textprovider.h38 Optional<WideString> GetEmbeddedObj(const WideString& wsAttr) const;
/external/pdfium/xfa/fxfa/parser/
Dxfa_utils.cpp168 WideString wsAttr; in RegenerateFormFile_Changed() local
170 bSaveXML, wsAttr); in RegenerateFormFile_Changed()
171 wsAttrs += wsAttr; in RegenerateFormFile_Changed()
335 WideString wsAttr; in RegenerateFormFile_Container() local
337 false, wsAttr); in RegenerateFormFile_Container()
338 wsOutput += wsAttr; in RegenerateFormFile_Container()
/external/pdfium/fxjs/xfa/
Dcjx_object.h121 void SetAttribute(WideStringView wsAttr,
124 void RemoveAttribute(WideStringView wsAttr);
127 Optional<WideString> TryAttribute(WideStringView wsAttr, bool bUseDefault);
Dcjx_object.cpp253 void CJX_Object::SetAttribute(WideStringView wsAttr, in SetAttribute() argument
256 Optional<XFA_ATTRIBUTEINFO> attr = XFA_GetAttributeByName(wsAttr); in SetAttribute()
261 void* pKey = GetMapKey_Custom(wsAttr); in SetAttribute()
310 Optional<WideString> CJX_Object::TryAttribute(WideStringView wsAttr, in TryAttribute() argument
312 Optional<XFA_ATTRIBUTEINFO> attr = XFA_GetAttributeByName(wsAttr); in TryAttribute()
315 return GetMapModuleString(GetMapKey_Custom(wsAttr)); in TryAttribute()
318 void CJX_Object::RemoveAttribute(WideStringView wsAttr) { in RemoveAttribute() argument
319 void* pKey = GetMapKey_Custom(wsAttr); in RemoveAttribute()