Searched refs:wsHref (Results 1 - 7 of 7) sorted by relevance

/external/pdfium/xfa/include/fxfa/
H A Dfxfa_widget.h34 const CFX_WideStringC& wsHref,
H A Dfxfa_objectacc.h345 void GetHref(CFX_WideStringC& wsHref);
351 FX_BOOL SetHref(const CFX_WideString& wsHref);
365 FX_BOOL GetHref(CFX_WideString& wsHref);
370 FX_BOOL SetHref(const CFX_WideString& wsHref);
/external/pdfium/xfa/src/fxfa/src/app/
H A Dxfa_ffdoc.cpp124 CFX_WideString wsHref; local
125 ((IFDE_XMLElement*)pPDFXML)->GetString(L"href", wsHref);
126 if (!wsHref.IsEmpty()) {
127 pXFAReader = GetDocProvider()->OpenLinkedFile(this, wsHref);
H A Dxfa_ffwidgetacc.cpp221 CFX_WideString wsContentType, wsHref; local
225 image.GetHref(wsHref);
227 SetImageEdit(wsContentType, wsHref, wsValue);
269 const CFX_WideStringC& wsHref,
274 image.SetHref(wsHref);
287 pHrefNode->SetCData(XFA_ATTRIBUTE_Value, wsHref);
291 ((IFDE_XMLElement*)pXMLNode)->SetString(FX_WSTRC(L"href"), wsHref);
268 SetImageEdit(const CFX_WideStringC& wsContentType, const CFX_WideStringC& wsHref, const CFX_WideStringC& wsData) argument
H A Dxfa_ffwidget.cpp964 CFX_WideString wsHref; local
965 pImage->GetHref(wsHref);
968 if (wsHref.IsEmpty() && wsImage.IsEmpty()) {
994 CFX_WideString wsURL = wsHref;
/external/pdfium/xfa/src/fxfa/src/parser/
H A Dxfa_document_datamerger_imp.cpp120 CFX_WideString wsHref; local
124 image.GetHref(wsHref);
132 if (!wsHref.IsEmpty()) {
133 pXMLDataElement->SetString(FX_WSTRC(L"href"), wsHref);
271 CFX_WideString wsHref; local
277 pXMLDataElement->GetString(L"href", wsHref);
278 if (!wsHref.IsEmpty()) {
279 image.SetHref(wsHref);
H A Dxfa_objectacc_imp.cpp883 void CXFA_ExData::GetHref(CFX_WideStringC& wsHref) { argument
884 m_pNode->TryCData(XFA_ATTRIBUTE_Href, wsHref);
901 FX_BOOL CXFA_ExData::SetHref(const CFX_WideString& wsHref) { argument
902 return m_pNode->SetCData(XFA_ATTRIBUTE_Href, wsHref);
934 FX_BOOL CXFA_Image::GetHref(CFX_WideString& wsHref) { argument
936 return m_pNode->TryCData(XFA_ATTRIBUTE_Href, wsHref);
938 return m_pNode->GetAttribute(FX_WSTRC(L"href"), wsHref);
955 FX_BOOL CXFA_Image::SetHref(const CFX_WideString& wsHref) { argument
957 return m_pNode->SetCData(XFA_ATTRIBUTE_Href, wsHref);
959 return m_pNode->SetAttribute(XFA_ATTRIBUTE_Href, wsHref);
[all...]

Completed in 454 milliseconds