Home | History | Annotate | Download | only in base

Lines Matching full:rhs_it

844   Iterator rhs_it(*other_dict);
845 while (!lhs_it.IsAtEnd() && !rhs_it.IsAtEnd()) {
846 if (lhs_it.key() != rhs_it.key() ||
847 !lhs_it.value().Equals(&rhs_it.value())) {
851 rhs_it.Advance();
853 if (!lhs_it.IsAtEnd() || !rhs_it.IsAtEnd())
1135 const_iterator lhs_it, rhs_it;
1136 for (lhs_it = begin(), rhs_it = other_list->begin();
1137 lhs_it != end() && rhs_it != other_list->end();
1138 ++lhs_it, ++rhs_it) {
1139 if (!(*lhs_it)->Equals(*rhs_it))
1142 if (lhs_it != end() || rhs_it != other_list->end())