Lines Matching refs:iter
26 Balloons::iterator iter;
27 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
28 if ((*iter) == balloon) {
29 balloons_.erase(iter);
39 Balloons::iterator iter;
40 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
41 if ((*iter)->notification().notification_id() == id)
42 to_close.push_back(*iter);
44 for (iter = to_close.begin(); iter != to_close.end(); ++iter)
45 (*iter)->CloseByScript();
55 Balloons::iterator iter;
56 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
57 if ((*iter)->notification().origin_url() == source_origin)
58 to_close.push_back(*iter);
60 for (iter = to_close.begin(); iter != to_close.end(); ++iter)
61 (*iter)->CloseByScript();
70 for (Balloons::iterator iter = to_close.begin();
71 iter != to_close.end(); ++iter)
72 (*iter)->CloseByScript();
77 Balloons::iterator iter;
78 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
79 if ((*iter)->notification().notification_id() ==
81 return *iter;