Home
last modified time | relevance | path

Searched refs:m_pChild (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/core/fxcrt/xml/
Dcfx_xmlparser.cpp24 m_pChild(nullptr), in CFX_XMLParser()
45 if (m_pChild) { in DoParser()
46 if (m_pChild->GetType() != FX_XMLNODE_Instruction) { in DoParser()
51 m_pChild = m_pParent; in DoParser()
60 if (m_pChild->GetType() != FX_XMLNODE_Element) { in DoParser()
65 m_ws2 = static_cast<CFX_XMLElement*>(m_pChild)->GetName(); in DoParser()
83 m_pChild = m_pParent; in DoParser()
89 m_pChild = new CFX_XMLInstruction(m_ws1); in DoParser()
90 m_pParent->InsertChildNode(m_pChild); in DoParser()
92 m_pChild = nullptr; in DoParser()
[all …]
Dcfx_xmlnode.cpp20 m_pChild(nullptr), in CFX_XMLNode()
33 CFX_XMLNode* pChild = m_pChild; in DeleteChildren()
39 m_pChild = nullptr; in DeleteChildren()
44 CFX_XMLNode* pChild = m_pChild; in CountChildNodes()
53 CFX_XMLNode* pChild = m_pChild; in GetChildNode()
66 CFX_XMLNode* pChild = m_pChild; in GetChildNodeIndex()
107 CFX_XMLNode* pNode = m_pChild; in GetPath()
135 if (!m_pChild) { in InsertChildNode()
136 m_pChild = pNode; in InsertChildNode()
142 pNode->m_pNext = m_pChild; in InsertChildNode()
[all …]
Dcfx_xmlelement.cpp32 CFX_XMLNode* pChild = m_pChild; in Clone()
84 CFX_XMLNode* pChild = m_pChild; in GetTextData()
Dcfx_xmldoc.cpp122 if (pNode->m_pChild) { in SaveXMLNode()
125 CFX_XMLNode* pChild = pNode->m_pChild; in SaveXMLNode()
Dcfx_xmlparser.h39 CFX_XMLNode* m_pChild; variable
Dcfx_xmlnode.h70 CFX_XMLNode* m_pChild; variable
/external/pdfium/xfa/fxfa/parser/
Dcxfa_node.cpp189 m_pChild(nullptr), in CXFA_Node()
221 CXFA_Node* pNode = m_pChild; in ~CXFA_Node()
271 if (!m_pParent || m_pParent->m_pChild == this) in GetPrevSibling()
274 for (CXFA_Node* pNode = m_pParent->m_pChild; pNode; pNode = pNode->m_pNext) { in GetPrevSibling()
289 if (!m_pParent || m_pParent->m_pChild == this) in GetPrevContainerSibling()
293 for (CXFA_Node* pNode = m_pParent->m_pChild; pNode; pNode = pNode->m_pNext) { in GetPrevContainerSibling()
303 CXFA_Node* pNode = m_pChild; in GetFirstContainerChild()
398 for (CXFA_Node* pChild = m_pChild; pChild; pChild = pChild->m_pNext) { in GetNodeList()
407 for (CXFA_Node* pChild = m_pChild; pChild; pChild = pChild->m_pNext) in GetNodeList()
419 for (CXFA_Node* pChild = m_pChild; pChild; pChild = pChild->m_pNext) { in GetNodeList()
[all …]
Dcxfa_node.h176 CXFA_Node* GetFirstChild() const { return m_pChild; } in GetFirstChild()
350 CXFA_Node* m_pChild; variable