Home
last modified time | relevance | path

Searched refs:view_iter (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/ui/views/focus/
Dview_storage.cc83 std::map<int, View*>::iterator view_iter = id_to_view_.find(storage_id); in EraseView() local
84 if (view_iter == id_to_view_.end()) in EraseView()
87 View* view = view_iter->second; in EraseView()
88 id_to_view_.erase(view_iter); in EraseView()
98 view_iter = id_to_view_.find((*ids)[i]); in EraseView()
99 if (view_iter != id_to_view_.end()) in EraseView()
100 id_to_view_.erase(view_iter); in EraseView()
/external/chromium_org/ui/message_center/views/
Dmessage_center_view.cc951 NotificationViewsMap::iterator view_iter = notification_views_.find(id); in OnNotificationRemoved() local
952 if (view_iter == notification_views_.end()) in OnNotificationRemoved()
954 NotificationView* view = view_iter->second; in OnNotificationRemoved()
980 notification_views_.erase(view_iter); in OnNotificationRemoved()
986 NotificationViewsMap::const_iterator view_iter = notification_views_.find(id); in OnNotificationUpdated() local
987 if (view_iter == notification_views_.end()) in OnNotificationUpdated()
989 NotificationView* view = view_iter->second; in OnNotificationUpdated()