Searched refs:afterThis (Results 1 – 6 of 6) sorted by relevance
246 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument248 if ( !afterThis || afterThis->parent != this ) in InsertAfterChild()256 node->prev = afterThis; in InsertAfterChild()257 node->next = afterThis->next; in InsertAfterChild()258 if ( afterThis->next ) in InsertAfterChild()260 afterThis->next->prev = node; in InsertAfterChild()264 assert( lastChild == afterThis ); in InsertAfterChild()267 afterThis->next = node; in InsertAfterChild()
556 TiXmlNode* InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis );
263 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument265 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()280 node->prev = afterThis; in InsertAfterChild()281 node->next = afterThis->next; in InsertAfterChild()282 if ( afterThis->next ) in InsertAfterChild()284 afterThis->next->prev = node; in InsertAfterChild()288 assert( lastChild == afterThis ); in InsertAfterChild()291 afterThis->next = node; in InsertAfterChild()
603 TiXmlNode* InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis );
902 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument910 TIXMLASSERT( afterThis ); in InsertAfterChild()912 if ( afterThis->_parent != this ) { in InsertAfterChild()916 if ( afterThis == addThis ) { in InsertAfterChild()924 if ( afterThis->_next == 0 ) { in InsertAfterChild()929 addThis->_prev = afterThis; in InsertAfterChild()930 addThis->_next = afterThis->_next; in InsertAfterChild()931 afterThis->_next->_prev = addThis; in InsertAfterChild()932 afterThis->_next = addThis; in InsertAfterChild()
857 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );