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 );
654 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument656 TIXMLASSERT( afterThis->parent == this ); in InsertAfterChild()657 if ( afterThis->parent != this ) in InsertAfterChild()660 if ( afterThis->next == 0 ) { in InsertAfterChild()664 addThis->prev = afterThis; in InsertAfterChild()665 addThis->next = afterThis->next; in InsertAfterChild()666 afterThis->next->prev = addThis; in InsertAfterChild()667 afterThis->next = addThis; in InsertAfterChild()
528 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );