• Home
  • Raw
  • Download

Lines Matching refs:pXMLChild

270   for (CFX_XMLNode* pXMLChild =  in ConvertXMLToPlainText()  local
272 pXMLChild; in ConvertXMLToPlainText()
273 pXMLChild = pXMLChild->GetNodeItem(CFX_XMLNode::NextSibling)) { in ConvertXMLToPlainText()
274 switch (pXMLChild->GetType()) { in ConvertXMLToPlainText()
277 static_cast<CFX_XMLElement*>(pXMLChild)->GetTextData(); in ConvertXMLToPlainText()
284 WideString wsText = static_cast<CFX_XMLText*>(pXMLChild)->GetText(); in ConvertXMLToPlainText()
426 for (CFX_XMLNode* pXMLChild = in ConstructXFANode() local
428 pXMLChild; in ConstructXFANode()
429 pXMLChild = pXMLChild->GetNodeItem(CFX_XMLNode::NextSibling)) { in ConstructXFANode()
430 FX_XMLNODETYPE eNodeType = pXMLChild->GetType(); in ConstructXFANode()
440 CFX_XMLElement* child = static_cast<CFX_XMLElement*>(pXMLChild); in ConstructXFANode()
450 pXFAChild->SetXMLMappingNode(pXMLChild); in ConstructXFANode()
870 for (CFX_XMLNode* pXMLChild = pXMLDoc->GetNodeItem(CFX_XMLNode::FirstChild); in NormalLoader() local
871 pXMLChild; in NormalLoader()
872 pXMLChild = pXMLChild->GetNodeItem(CFX_XMLNode::NextSibling)) { in NormalLoader()
873 switch (pXMLChild->GetType()) { in NormalLoader()
875 CFX_XMLElement* pXMLElement = static_cast<CFX_XMLElement*>(pXMLChild); in NormalLoader()
939 ParseInstruction(pXFANode, static_cast<CFX_XMLInstruction*>(pXMLChild), in NormalLoader()
965 for (CFX_XMLNode* pXMLChild = pXMLNode->GetNodeItem(CFX_XMLNode::FirstChild); in ParseContentNode() local
966 pXMLChild; in ParseContentNode()
967 pXMLChild = pXMLChild->GetNodeItem(CFX_XMLNode::NextSibling)) { in ParseContentNode()
968 FX_XMLNODETYPE eNodeType = pXMLChild->GetType(); in ParseContentNode()
976 if (XFA_RecognizeRichText(static_cast<CFX_XMLElement*>(pXMLChild))) in ParseContentNode()
978 GetPlainTextFromRichText(static_cast<CFX_XMLElement*>(pXMLChild)); in ParseContentNode()
983 ConvertXMLToPlainText(static_cast<CFX_XMLElement*>(pXMLChild), wsValue); in ParseContentNode()
988 wsValue = static_cast<CFX_XMLText*>(pXMLChild)->GetText(); in ParseContentNode()
1010 for (CFX_XMLNode* pXMLChild = pXMLNode->GetNodeItem(CFX_XMLNode::FirstChild); in ParseDataGroup() local
1011 pXMLChild; in ParseDataGroup()
1012 pXMLChild = pXMLChild->GetNodeItem(CFX_XMLNode::NextSibling)) { in ParseDataGroup()
1013 switch (pXMLChild->GetType()) { in ParseDataGroup()
1015 CFX_XMLElement* pXMLElement = static_cast<CFX_XMLElement*>(pXMLChild); in ParseDataGroup()
1114 ParseDataValue(pXFAChild, pXMLChild, XFA_PacketType::Datasets); in ParseDataGroup()
1122 CFX_XMLText* pXMLText = static_cast<CFX_XMLText*>(pXMLChild); in ParseDataGroup()
1152 for (CFX_XMLNode* pXMLChild = pXMLNode->GetNodeItem(CFX_XMLNode::FirstChild); in ParseDataValue() local
1153 pXMLChild; in ParseDataValue()
1154 pXMLChild = pXMLChild->GetNodeItem(CFX_XMLNode::NextSibling)) { in ParseDataValue()
1155 FX_XMLNODETYPE eNodeType = pXMLChild->GetType(); in ParseDataValue()
1160 WideString wsText = static_cast<CFX_XMLText*>(pXMLChild)->GetText(); in ParseDataValue()
1162 pXMLCurValueNode = pXMLChild; in ParseDataValue()
1165 } else if (XFA_RecognizeRichText(static_cast<CFX_XMLElement*>(pXMLChild))) { in ParseDataValue()
1167 GetPlainTextFromRichText(static_cast<CFX_XMLElement*>(pXMLChild)); in ParseDataValue()
1169 pXMLCurValueNode = pXMLChild; in ParseDataValue()
1200 static_cast<CFX_XMLElement*>(pXMLChild)->GetLocalTagName(); in ParseDataValue()
1203 ParseDataValue(pXFAChild, pXMLChild, ePacketID); in ParseDataValue()
1205 pXFAChild->SetXMLMappingNode(pXMLChild); in ParseDataValue()