Searched refs:afterThis (Results 1 – 2 of 2) sorted by relevance
906 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument914 TIXMLASSERT( afterThis ); in InsertAfterChild()916 if ( afterThis->_parent != this ) { in InsertAfterChild()920 if ( afterThis == addThis ) { in InsertAfterChild()928 if ( afterThis->_next == 0 ) { in InsertAfterChild()933 addThis->_prev = afterThis; in InsertAfterChild()934 addThis->_next = afterThis->_next; in InsertAfterChild()935 afterThis->_next->_prev = addThis; in InsertAfterChild()936 afterThis->_next = addThis; in InsertAfterChild()
861 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );
Completed in 13 milliseconds