Searched refs:other_iter (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/util/
H A Dlist-container.h48 const_iterator other_iter = other._head; local
49 while ( iter && other_iter ) {
50 if (!( *iter == *other_iter )) {
54 ++other_iter;
56 return !iter && !other_iter;
65 const_iterator other_iter = other._head; local
66 while ( iter && other_iter ) {
67 if ( *iter < *other_iter ) {
69 } else if ( *other_iter < *iter ) {
73 ++other_iter;
[all...]

Completed in 50 milliseconds