Lines Matching refs:pText
1560 for (CXFA_Node* pText = pItems->GetFirstChild(); pText; in HasButtonRollover() local
1561 pText = pText->GetNextSibling()) { in HasButtonRollover()
1562 if (pText->JSObject()->GetCData(XFA_Attribute::Name) == L"rollover") in HasButtonRollover()
1563 return !pText->JSObject()->GetContent(false).IsEmpty(); in HasButtonRollover()
1574 for (CXFA_Node* pText = pItems->GetFirstChild(); pText; in HasButtonDown() local
1575 pText = pText->GetNextSibling()) { in HasButtonDown()
1576 if (pText->JSObject()->GetCData(XFA_Attribute::Name) == L"down") in HasButtonDown()
1577 return !pText->JSObject()->GetContent(false).IsEmpty(); in HasButtonDown()
1627 CXFA_Node* pText = pItems->GetFirstChild(); in GetCheckState() local
1629 while (pText) { in GetCheckState()
1630 Optional<WideString> wsContent = pText->JSObject()->TryContent(false, true); in GetCheckState()
1635 pText = pText->GetNextSibling(); in GetCheckState()
1649 CXFA_Node* pText = pItems->GetFirstChild(); in SetCheckState() local
1651 while (pText) { in SetCheckState()
1654 wsContent = pText->JSObject()->GetContent(false); in SetCheckState()
1657 pText = pText->GetNextSibling(); in SetCheckState()
1669 CXFA_Node* pText = pItems->GetFirstChild(); in SetCheckState() local
1670 if (pText) in SetCheckState()
1671 wsValue = pText->JSObject()->GetContent(false); in SetCheckState()
2175 CXFA_Node* pText = in GetItemLabel() local
2177 if (pText) in GetItemLabel()
2178 wsLabel = pText->JSObject()->GetContent(false); in GetItemLabel()
2218 CXFA_Node* pText = in GetItemValue() local
2220 return pText ? pText->JSObject()->GetContent(false) : L""; in GetItemValue()
2710 CXFA_Node* pText = pItems->CreateSamePacketNode(XFA_Element::Text); in InsertListTextItem() local
2711 pItems->InsertChild(nIndex, pText); in InsertListTextItem()
2712 pText->JSObject()->SetContent(wsText, wsText, false, false, false); in InsertListTextItem()