Home
last modified time | relevance | path

Searched refs:wsLabel (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/xfa/fxfa/
Dcxfa_ffdropdown.h22 virtual void InsertItem(const WideString& wsLabel, int32_t nIndex) = 0;
Dcxfa_ffdocview.cpp658 WideString wsLabel; in RunBindItems() local
675 wsLabel = refNode->JSObject()->GetContent(false); in RunBindItems()
680 wsLabel = nodeLabel->JSObject()->GetContent(false); in RunBindItems()
683 wsLabel = wsValue; in RunBindItems()
685 pWidgetNode->InsertItem(wsLabel, wsValue, false); in RunBindItems()
Dcxfa_fflistbox.cpp169 void CXFA_FFListBox::InsertItem(const WideString& wsLabel, int32_t nIndex) { in InsertItem() argument
170 ToListBox(GetNormalWidget())->AddString(wsLabel); in InsertItem()
Dcxfa_fflistbox.h28 void InsertItem(const WideString& wsLabel, int32_t nIndex) override;
Dcxfa_ffnotify.h31 const WideString& wsLabel,
Dcxfa_ffcombobox.h54 void InsertItem(const WideString& wsLabel, int32_t nIndex) override;
Dcxfa_ffcombobox.cpp294 void CXFA_FFComboBox::InsertItem(const WideString& wsLabel, int32_t nIndex) { in InsertItem() argument
295 ToComboBox(GetNormalWidget())->AddString(wsLabel); in InsertItem()
Dcxfa_ffnotify.cpp58 const WideString& wsLabel, in OnWidgetListItemAdded() argument
66 ToDropDown(ToField(pWidget))->InsertItem(wsLabel, iIndex); in OnWidgetListItemAdded()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_node.h350 void InsertItem(const WideString& wsLabel,
363 WideString GetItemValue(WideStringView wsLabel);
Dcxfa_node.cpp4384 void CXFA_Node::InsertItem(const WideString& wsLabel, in InsertItem() argument
4390 wsNewValue = wsLabel; in InsertItem()
4401 InsertListTextItem(pItems, wsLabel, nIndex); in InsertItem()
4413 InsertListTextItem(pNode, wsLabel, nIndex); in InsertItem()
4434 InsertListTextItem(pNode, wsLabel, nIndex); in InsertItem()
4438 GetDocument()->GetNotify()->OnWidgetListItemAdded(this, wsLabel, nIndex); in InsertItem()
4481 WideString CXFA_Node::GetItemValue(WideStringView wsLabel) { in GetItemValue() argument
4492 return WideString(wsLabel); in GetItemValue()
4509 if (pChildItem->JSObject()->GetContent(false) == wsLabel) { in GetItemValue()