Searched refs:afterThis (Results 1 – 2 of 2) sorted by relevance
678 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument680 TIXMLASSERT( afterThis->parent == this ); in InsertAfterChild()681 if ( afterThis->parent != this ) in InsertAfterChild()684 if ( afterThis->next == 0 ) { in InsertAfterChild()688 addThis->prev = afterThis; in InsertAfterChild()689 addThis->next = afterThis->next; in InsertAfterChild()690 afterThis->next->prev = addThis; in InsertAfterChild()691 afterThis->next = addThis; in InsertAfterChild()
651 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );