Lines Matching refs:this_it
106 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
107 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
109 (*this_it)->visitedBy( *this, this_it ); in visit()
110 this_it++; in visit()
177 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
178 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
180 (*this_it)->visitedBy( *this, this_it ); in visit()
181 this_it++; in visit()
199 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
200 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
202 (*this_it)->visitedBy( *this, this_it ); in visit()
203 this_it++; in visit()
286 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
287 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
289 (*this_it)->visitedBy( *this, this_it ); in visit()
290 this_it++; in visit()
387 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
388 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
390 (*this_it)->visitedBy( *this, this_it ); in visit()
391 this_it++; in visit()
403 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
404 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
406 (*this_it)->visitedBy( *this, this_it ); in visit()
407 this_it++; in visit()
442 std::list< Element* >::iterator this_it = elem.Parent->Children.begin(); in visit() local
443 while( this_it != elem.Parent->Children.end() && *this_it != &elem ) in visit()
444 ++this_it; in visit()
446 if( this_it != elem.Parent->Children.end() ) in visit()
448 std::list< Element* >::iterator next_it = this_it; in visit()