Searched refs:afterThis (Results 1 – 2 of 2) sorted by relevance
845 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument853 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()
800 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );