Lines Matching refs:this_it
56 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
57 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
59 (*this_it)->visitedBy( *this, this_it ); in visit()
60 this_it++; in visit()
79 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
80 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
82 (*this_it)->visitedBy( *this, this_it ); in visit()
83 this_it++; in visit()
101 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
102 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
104 (*this_it)->visitedBy( *this, this_it ); in visit()
105 this_it++; in visit()
212 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
213 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
215 (*this_it)->visitedBy( *this, this_it ); in visit()
216 this_it++; in visit()
305 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit() local
306 while( this_it !=elem.Children.end() && *this_it != &elem ) in visit()
308 (*this_it)->visitedBy( *this, this_it ); in visit()
309 this_it++; in visit()
374 std::list< Element* >::iterator this_it = elem.Parent->Children.begin(); in visit() local
375 while( this_it != elem.Parent->Children.end() && *this_it != &elem ) in visit()
376 ++this_it; in visit()
378 if( this_it != elem.Parent->Children.end() ) in visit()
380 std::list< Element* >::iterator next_it = this_it; in visit()