• Home
  • Raw
  • Download

Lines Matching refs:pXFANode

269 void CXFA_DocumentParser::ConstructXFANode(CXFA_Node* pXFANode,  in ConstructXFANode()  argument
271 XFA_PacketType ePacketID = pXFANode->GetPacketType(); in ConstructXFANode()
273 if (pXFANode->GetElementType() == XFA_Element::DataValue) { in ConstructXFANode()
295 pXFANode->InsertChildAndNotify(pXFAChild, nullptr); in ConstructXFANode()
301 m_pRootNode = pXFANode; in ConstructXFANode()
303 m_pRootNode = DataLoader(pXFANode, pXMLNode, true); in ConstructXFANode()
305 } else if (pXFANode->IsContentNode()) { in ConstructXFANode()
306 ParseContentNode(pXFANode, pXMLNode, ePacketID); in ConstructXFANode()
307 m_pRootNode = pXFANode; in ConstructXFANode()
309 m_pRootNode = NormalLoader(pXFANode, pXMLNode, ePacketID, true); in ConstructXFANode()
646 CXFA_Node* CXFA_DocumentParser::DataLoader(CXFA_Node* pXFANode, in DataLoader() argument
649 ParseDataGroup(pXFANode, pXMLDoc, XFA_PacketType::Datasets); in DataLoader()
650 return pXFANode; in DataLoader()
653 CXFA_Node* CXFA_DocumentParser::NormalLoader(CXFA_Node* pXFANode, in NormalLoader() argument
674 if (pXFANode->HasPropertyFlags( in NormalLoader()
709 pXFANode->InsertChildAndNotify(pXFAChild, nullptr); in NormalLoader()
732 ParseInstruction(pXFANode, ToXMLInstruction(pXMLChild), ePacketID); in NormalLoader()
738 return pXFANode; in NormalLoader()
741 void CXFA_DocumentParser::ParseContentNode(CXFA_Node* pXFANode, in ParseContentNode() argument
745 if (pXFANode->GetElementType() == XFA_Element::ExData) { in ParseContentNode()
747 pXFANode->JSObject()->GetCData(XFA_Attribute::ContentType); in ParseContentNode()
754 pXFANode->SetXMLMappingNode(pXMLNode); in ParseContentNode()
783 if (pXFANode->IsContentNode()) { in ParseContentNode()
789 pXFANode->InsertChildAndNotify(pContentRawDataNode, nullptr); in ParseContentNode()
791 pXFANode->JSObject()->SetCData(XFA_Attribute::Value, wsValue, false, in ParseContentNode()
797 void CXFA_DocumentParser::ParseDataGroup(CXFA_Node* pXFANode, in ParseDataGroup() argument
893 pXFANode->InsertChildAndNotify(pXFAChild, nullptr); in ParseDataGroup()
917 pXFANode->InsertChildAndNotify(pXFAChild, nullptr); in ParseDataGroup()
928 void CXFA_DocumentParser::ParseDataValue(CXFA_Node* pXFANode, in ParseDataValue() argument
969 pXFANode->InsertChildAndNotify(pXFAChild, nullptr); in ParseDataValue()
986 pXFANode->InsertChildAndNotify(pXFAChild, nullptr); in ParseDataValue()
1007 pXFANode->InsertChildAndNotify(pXFAChild, nullptr); in ParseDataValue()
1017 pXFANode->JSObject()->SetCData(XFA_Attribute::Value, wsNodeValue, false, in ParseDataValue()
1021 void CXFA_DocumentParser::ParseInstruction(CXFA_Node* pXFANode, in ParseInstruction() argument
1027 (pXFANode->GetDocument()->RecognizeXFAVersionNumber(target_data[0]) != in ParseInstruction()
1030 pXFANode->GetDocument()->set_is_scripting(); in ParseInstruction()
1037 pXFANode->GetDocument()->set_is_strict_scoping(); in ParseInstruction()