Lines Matching refs:_next

752     _prev( 0 ), _next( 0 ),  in XMLNode()
814 _firstChild = _firstChild->_next; in Unlink()
821 child->_prev->_next = child->_next; in Unlink()
823 if ( child->_next ) { in Unlink()
824 child->_next->_prev = child->_prev; in Unlink()
826 child->_next = 0; in Unlink()
839 TIXMLASSERT(node->_next == 0); in DeleteChild()
856 TIXMLASSERT( _lastChild->_next == 0 ); in InsertEndChild()
857 _lastChild->_next = addThis; in InsertEndChild()
861 addThis->_next = 0; in InsertEndChild()
868 addThis->_next = 0; in InsertEndChild()
889 addThis->_next = _firstChild; in InsertFirstChild()
899 addThis->_next = 0; in InsertFirstChild()
928 if ( afterThis->_next == 0 ) { in InsertAfterChild()
934 addThis->_next = afterThis->_next; in InsertAfterChild()
935 afterThis->_next->_prev = addThis; in InsertAfterChild()
936 afterThis->_next = addThis; in InsertAfterChild()
946 for( const XMLNode* node = _firstChild; node; node = node->_next ) { in FirstChildElement()
970 for( const XMLNode* node = _next; node; node = node->_next ) { in NextSiblingElement()
1502 XMLAttribute* next = _rootAttribute->_next; in ~XMLElement()
1511 for( XMLAttribute* a = _rootAttribute; a; a = a->_next ) { in FindAttribute()
1768 last = attrib, attrib = attrib->_next ) { in FindOrCreateAttribute()
1777 TIXMLASSERT( last->_next == 0 ); in FindOrCreateAttribute()
1778 last->_next = attrib; in FindOrCreateAttribute()
1793 for( XMLAttribute* a=_rootAttribute; a; a=a->_next ) { in DeleteAttribute()
1796 prev->_next = a->_next; in DeleteAttribute()
1799 _rootAttribute = a->_next; in DeleteAttribute()
1841 TIXMLASSERT( prevAttribute->_next == 0 ); in ParseAttributes()
1842 prevAttribute->_next = attrib; in ParseAttributes()