Lines Matching refs:iGroup
1419 Groups::iterator iGroup (maGroups.find(eGroup)); in ClearGroup() local
1420 if (iGroup != maGroups.end()) in ClearGroup()
1422 if ( ! iGroup->second.empty()) in ClearGroup()
1424 iGroup->second.clear(); in ClearGroup()
1436 Groups::iterator iGroup (maGroups.find(eGroup)); in AddToolBar() local
1437 if (iGroup == maGroups.end()) in AddToolBar()
1438 iGroup = maGroups.insert(Groups::value_type(eGroup,NameList())).first; in AddToolBar()
1440 if (iGroup != maGroups.end()) in AddToolBar()
1443 ::std::find(iGroup->second.begin(),iGroup->second.end(),rsName)); in AddToolBar()
1444 if (iBar == iGroup->second.end()) in AddToolBar()
1446 iGroup->second.push_back(rsName); in AddToolBar()
1458 Groups::iterator iGroup (maGroups.find(eGroup)); in RemoveToolBar() local
1459 if (iGroup != maGroups.end()) in RemoveToolBar()
1462 ::std::find(iGroup->second.begin(),iGroup->second.end(),rsName)); in RemoveToolBar()
1463 if (iBar != iGroup->second.end()) in RemoveToolBar()
1465 iGroup->second.erase(iBar); in RemoveToolBar()
1480 Groups::const_iterator iGroup (maGroups.find(eGroup)); in MakeRequestedToolBarList() local
1481 if (iGroup != maGroups.end()) in MakeRequestedToolBarList()
1483 iGroup->second.begin(), in MakeRequestedToolBarList()
1484 iGroup->second.end(), in MakeRequestedToolBarList()