Home | History | Annotate | Download | only in trees

Lines Matching defs:cur_pos

228   SortedRectMap::iterator cur_pos = rect_history_.begin();
229 SortedRectMap::iterator copy_pos = cur_pos;
233 // cur_pos iterator runs through all elements of the vector, but copy_pos
238 // cur_pos and no copy happens.
239 while (cur_pos < rect_history_.end()) {
240 if (cur_pos->mailboxId_ == mailboxId_) {
241 if (cur_pos != copy_pos)
242 *copy_pos = *cur_pos;
246 damage_rect.Union(cur_pos->rect_);
249 ++cur_pos;