Home
last modified time | relevance | path

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

/reactos/sdk/tools/xml2sdb/
H A Dtinyxml2.cpp845 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument
853 TIXMLASSERT( afterThis ); in InsertAfterChild()
855 if ( afterThis->_parent != this ) { in InsertAfterChild()
860 if ( afterThis->_next == 0 ) { in InsertAfterChild()
865 addThis->_prev = afterThis; in InsertAfterChild()
866 addThis->_next = afterThis->_next; in InsertAfterChild()
867 afterThis->_next->_prev = addThis; in InsertAfterChild()
868 afterThis->_next = addThis; in InsertAfterChild()
H A Dtinyxml2.h800 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );