Home | History | Annotate | Download | only in notifications

Lines Matching defs:iter

108   NotificationDeque::iterator iter;
109 for (iter = show_queue_.begin(); iter != show_queue_.end(); ++iter) {
110 if ((*iter)->notification().notification_id() == id) {
111 show_queue_.erase(iter);
123 NotificationDeque::iterator iter;
124 for (iter = show_queue_.begin(); iter != show_queue_.end();) {
125 if ((*iter)->notification().origin_url() == source) {
126 iter = show_queue_.erase(iter);
129 ++iter;
189 NotificationDeque::iterator iter;
190 for (iter = show_queue_.begin(); iter != show_queue_.end(); ++iter) {
191 if (origin == (*iter)->notification().origin_url() &&
192 replace_id == (*iter)->notification().replace_id()) {
193 (*iter)->Replace(notification);