Lines Matching refs:pChildNode
78 CXFA_Node* pChildNode = pValueNode->GetFirstChild(); in FormValueNode_CreateChild() local
79 if (!pChildNode) { in FormValueNode_CreateChild()
83 pChildNode = in FormValueNode_CreateChild()
86 return pChildNode; in FormValueNode_CreateChild()
96 CXFA_Node* pChildNode = FormValueNode_CreateChild(pValueNode, iType); in FormValueNode_SetChildContent() local
97 if (!pChildNode) in FormValueNode_SetChildContent()
100 switch (pChildNode->GetObjectType()) { in FormValueNode_SetChildContent()
102 CXFA_Node* pContentRawDataNode = pChildNode->GetFirstChild(); in FormValueNode_SetChildContent()
105 if (pChildNode->GetElementType() == XFA_Element::ExData) { in FormValueNode_SetChildContent()
107 pChildNode->JSObject()->TryAttribute(XFA_Attribute::ContentType, in FormValueNode_SetChildContent()
116 pContentRawDataNode = pChildNode->CreateSamePacketNode(element); in FormValueNode_SetChildContent()
117 pChildNode->InsertChildAndNotify(pContentRawDataNode, nullptr); in FormValueNode_SetChildContent()
126 pChildNode->JSObject()->SetCData(XFA_Attribute::Value, wsContent, false, in FormValueNode_SetChildContent()
1636 for (CXFA_Node* pChildNode = pDatasetsRoot->GetFirstChild(); pChildNode; in DoDataMerge() local
1637 pChildNode = pChildNode->GetNextSibling()) { in DoDataMerge()
1638 if (pChildNode->GetElementType() != XFA_Element::DataGroup) in DoDataMerge()
1641 if (!pDDRoot && pChildNode->GetNameHash() == XFA_HASHCODE_DataDescription) { in DoDataMerge()
1643 pChildNode->JSObject()->TryNamespace(); in DoDataMerge()
1648 pDDRoot = pChildNode; in DoDataMerge()
1650 } else if (!pDataRoot && pChildNode->GetNameHash() == XFA_HASHCODE_Data) { in DoDataMerge()
1652 pChildNode->JSObject()->TryNamespace(); in DoDataMerge()
1656 pDataRoot = pChildNode; in DoDataMerge()