Searched refs:pBeforeNode (Results 1 – 9 of 9) sorted by relevance
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_attachnodelist.cpp | 32 bool CXFA_AttachNodeList::Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) { in Insert() argument 33 if (pBeforeNode && pBeforeNode->GetParent() != m_pAttachNode) in Insert() 40 m_pAttachNode->InsertChildAndNotify(pNewNode, pBeforeNode); in Insert()
|
D | cxfa_arraynodelist.cpp | 30 bool CXFA_ArrayNodeList::Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) { in Insert() argument 31 if (!pBeforeNode) { in Insert() 36 auto it = std::find(m_array.begin(), m_array.end(), pBeforeNode); in Insert()
|
D | cxfa_attachnodelist.h | 23 bool Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) override;
|
D | cxfa_arraynodelist.h | 25 bool Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) override;
|
D | cxfa_list.h | 22 virtual bool Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) = 0;
|
D | cxfa_node.cpp | 616 CXFA_Node* pBeforeNode = nullptr; in ReorderDataNodes() local 618 pBeforeNode = rgNodeArray2.front(); in ReorderDataNodes() 619 pParentNode = pBeforeNode->GetParent(); in ReorderDataNodes() 623 pBeforeNode = pLastNode->GetNextSibling(); in ReorderDataNodes() 627 pParentNode->InsertChildAndNotify(pCurNode, pBeforeNode); in ReorderDataNodes() 1552 void CXFA_Node::InsertChildAndNotify(CXFA_Node* pNode, CXFA_Node* pBeforeNode) { in InsertChildAndNotify() argument 1554 CHECK(!pBeforeNode || pBeforeNode->GetParent() == this); in InsertChildAndNotify() 1556 InsertBefore(pNode, pBeforeNode); in InsertChildAndNotify() 1567 pBeforeNode ? pBeforeNode->xml_node_.Get() : nullptr); in InsertChildAndNotify()
|
D | cxfa_node.h | 169 void InsertChildAndNotify(CXFA_Node* pNode, CXFA_Node* pBeforeNode);
|
D | cxfa_document.cpp | 1729 CXFA_Node* pBeforeNode = pDataRoot->GetFirstChild(); in DoDataMerge() local 1730 pDataRoot->InsertChildAndNotify(pDataTopLevel, pBeforeNode); in DoDataMerge()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_list.cpp | 63 auto* pBeforeNode = in insert() local 65 if (!GetXFAList()->Insert(pNewNode, pBeforeNode)) in insert()
|