Searched refs:pBeforeNode (Results 1 – 9 of 9) sorted by relevance
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_attachnodelist.cpp | 41 bool CXFA_AttachNodeList::Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) { in Insert() argument 45 if (pBeforeNode && pBeforeNode->GetParent() != m_pAttachNode) in Insert() 52 m_pAttachNode->InsertChildAndNotify(pNewNode, pBeforeNode); in Insert()
|
D | cxfa_arraynodelist.cpp | 42 bool CXFA_ArrayNodeList::Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) { in Insert() argument 43 if (!pBeforeNode) { in Insert() 48 auto it = std::find(m_array.begin(), m_array.end(), pBeforeNode); in Insert()
|
D | cxfa_list.h | 24 virtual bool Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) = 0;
|
D | cxfa_attachnodelist.h | 27 bool Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) override;
|
D | cxfa_arraynodelist.h | 29 bool Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) override;
|
D | cxfa_node.cpp | 607 CXFA_Node* pBeforeNode = nullptr; in ReorderDataNodes() local 609 pBeforeNode = rgNodeArray2.front(); in ReorderDataNodes() 610 pParentNode = pBeforeNode->GetParent(); in ReorderDataNodes() 614 pBeforeNode = pLastNode->GetNextSibling(); in ReorderDataNodes() 618 pParentNode->InsertChildAndNotify(pCurNode, pBeforeNode); in ReorderDataNodes() 1611 void CXFA_Node::InsertChildAndNotify(CXFA_Node* pNode, CXFA_Node* pBeforeNode) { in InsertChildAndNotify() argument 1613 CHECK(!pBeforeNode || pBeforeNode->GetParent() == this); in InsertChildAndNotify() 1615 InsertBefore(pNode, pBeforeNode); in InsertChildAndNotify() 1626 pBeforeNode ? pBeforeNode->xml_node_ : nullptr); in InsertChildAndNotify()
|
D | cxfa_node.h | 204 void InsertChildAndNotify(CXFA_Node* pNode, CXFA_Node* pBeforeNode);
|
D | cxfa_document.cpp | 1792 CXFA_Node* pBeforeNode = pDataRoot->GetFirstChild(); in DoDataMerge() local 1793 pDataRoot->InsertChildAndNotify(pDataTopLevel, pBeforeNode); in DoDataMerge()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_list.cpp | 65 auto* pBeforeNode = ToNode(runtime->ToXFAObject(params[1])); in insert() local 66 if (!GetXFAList()->Insert(pNewNode, pBeforeNode)) in insert()
|