Searched refs:wsLabel (Results 1 – 10 of 10) sorted by relevance
/external/pdfium/xfa/fxfa/ |
D | cxfa_ffdropdown.h | 22 virtual void InsertItem(const WideString& wsLabel, int32_t nIndex) = 0;
|
D | cxfa_ffdocview.cpp | 658 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()
|
D | cxfa_fflistbox.cpp | 169 void CXFA_FFListBox::InsertItem(const WideString& wsLabel, int32_t nIndex) { in InsertItem() argument 170 ToListBox(GetNormalWidget())->AddString(wsLabel); in InsertItem()
|
D | cxfa_fflistbox.h | 28 void InsertItem(const WideString& wsLabel, int32_t nIndex) override;
|
D | cxfa_ffnotify.h | 31 const WideString& wsLabel,
|
D | cxfa_ffcombobox.h | 54 void InsertItem(const WideString& wsLabel, int32_t nIndex) override;
|
D | cxfa_ffcombobox.cpp | 294 void CXFA_FFComboBox::InsertItem(const WideString& wsLabel, int32_t nIndex) { in InsertItem() argument 295 ToComboBox(GetNormalWidget())->AddString(wsLabel); in InsertItem()
|
D | cxfa_ffnotify.cpp | 58 const WideString& wsLabel, in OnWidgetListItemAdded() argument 66 ToDropDown(ToField(pWidget))->InsertItem(wsLabel, iIndex); in OnWidgetListItemAdded()
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_node.h | 350 void InsertItem(const WideString& wsLabel, 363 WideString GetItemValue(WideStringView wsLabel);
|
D | cxfa_node.cpp | 4384 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()
|