/external/pdfium/xfa/include/fxfa/ |
fxfa_widget.h | 34 const CFX_WideStringC& wsHref,
|
fxfa_objectacc.h | 345 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/ |
xfa_ffdoc.cpp | 124 CFX_WideString wsHref;
125 ((IFDE_XMLElement*)pPDFXML)->GetString(L"href", wsHref);
126 if (!wsHref.IsEmpty()) {
127 pXFAReader = GetDocProvider()->OpenLinkedFile(this, wsHref);
|
xfa_ffwidgetacc.cpp | 221 CFX_WideString wsContentType, wsHref;
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);
[all...] |
xfa_ffwidget.cpp | 964 CFX_WideString wsHref;
965 pImage->GetHref(wsHref);
968 if (wsHref.IsEmpty() && wsImage.IsEmpty()) {
[all...] |
/external/pdfium/xfa/src/fxfa/src/parser/ |
xfa_document_datamerger_imp.cpp | 120 CFX_WideString wsHref;
124 image.GetHref(wsHref);
132 if (!wsHref.IsEmpty()) {
133 pXMLDataElement->SetString(FX_WSTRC(L"href"), wsHref);
271 CFX_WideString wsHref;
277 pXMLDataElement->GetString(L"href", wsHref);
278 if (!wsHref.IsEmpty()) {
279 image.SetHref(wsHref);
[all...] |
xfa_objectacc_imp.cpp | 883 void CXFA_ExData::GetHref(CFX_WideStringC& wsHref) {
884 m_pNode->TryCData(XFA_ATTRIBUTE_Href, wsHref);
901 FX_BOOL CXFA_ExData::SetHref(const CFX_WideString& wsHref) {
902 return m_pNode->SetCData(XFA_ATTRIBUTE_Href, wsHref);
[all...] |