Home
last modified time | relevance | path

Searched refs:m_pLastChild (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/xfa/src/fxfa/src/parser/
Dxfa_object_imp.cpp90 m_pLastChild(nullptr), in CXFA_Node()
4642 m_pLastChild->m_pNext = pNode; in InsertChild()
4657 m_pLastChild = pNode; in InsertChild()
4659 ASSERT(m_pLastChild != NULL && m_pLastChild->m_pNext == NULL); in InsertChild()
4687 pNode->m_pNext = m_pLastChild->m_pNext; in InsertChild()
4688 m_pLastChild->m_pNext = pNode; in InsertChild()
4700 m_pLastChild = pNode; in InsertChild()
4702 ASSERT(m_pLastChild != NULL && m_pLastChild->m_pNext == NULL); in InsertChild()
4734 if (m_pLastChild == pNode) { in RemoveChild()
4735 m_pLastChild = pNode->m_pNext; in RemoveChild()
[all …]
/external/pdfium/xfa/src/fxfa/src/common/
Dxfa_object.h625 CXFA_Node* m_pLastChild; variable