OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:menu_item_map_
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/ui/cocoa/
history_menu_bridge.mm
127
std::map<NSMenuItem*, HistoryItem*>::iterator it =
menu_item_map_
.begin();
128
while (it !=
menu_item_map_
.end()) {
130
menu_item_map_
.erase(it++);
204
menu_item_map_
.insert(std::make_pair(restore_item.get(), dup_item));
260
std::map<NSMenuItem*, HistoryItem*>::iterator it =
menu_item_map_
.find(item);
261
if (it !=
menu_item_map_
.end()) {
292
menu_item_map_
.erase(menu_item);
344
menu_item_map_
.insert(std::make_pair(item->menu_item.get(), item));
390
// This will add |item| to the |
menu_item_map_
|, which takes ownership.
history_menu_bridge.h
99
// that this is a list of weak references. The |
menu_item_map_
| is the owner
135
// Looks up an NSMenuItem in the |
menu_item_map_
| and returns the
157
// |
menu_item_map_
|, which takes ownership. Items are deleted in
211
std::map<NSMenuItem*, HistoryItem*>
menu_item_map_
;
member in class:HistoryMenuBridge
history_menu_cocoa_controller_unittest.mm
62
return bridge_->
menu_item_map_
;
history_menu_bridge_unittest.mm
180
// is called, which places them into the |
menu_item_map_
|, which owns them.
Completed in 151 milliseconds