OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:event_flags
(Results
51 - 75
of
345
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/chrome/browser/ui/app_list/search/
chrome_search_result.h
41
virtual void Open(int
event_flags
) = 0;
44
virtual void InvokeAction(int action_index, int
event_flags
) = 0;
app_result.cc
73
void AppResult::Open(int
event_flags
) {
92
event_flags
);
95
void AppResult::InvokeAction(int action_index, int
event_flags
) {}
169
void AppResult::ExecuteLaunchCommand(int
event_flags
) {
170
Open(
event_flags
);
omnibox_provider.cc
82
virtual void Open(int
event_flags
) OVERRIDE {
86
params.disposition = ui::DispositionFromEventFlags(
event_flags
);
90
virtual void InvokeAction(int action_index, int
event_flags
) OVERRIDE {}
/external/chromium_org/chrome/browser/ui/app_list/search/webstore/
webstore_result.h
36
virtual void Open(int
event_flags
) OVERRIDE;
37
virtual void InvokeAction(int action_index, int
event_flags
) OVERRIDE;
/external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_app_menu_item_browser.cc
36
void ChromeLauncherAppMenuItemBrowser::Execute(int
event_flags
) {
38
if (
event_flags
& (ui::EF_SHIFT_DOWN | ui::EF_MIDDLE_MOUSE_BUTTON)) {
launcher_application_menu_item_model.cc
43
int
event_flags
) {
45
launcher_items_[command_id]->Execute(
event_flags
);
app_shortcut_launcher_item_controller.h
41
virtual void Launch(ash::LaunchSource source, int
event_flags
) OVERRIDE;
45
int
event_flags
) OVERRIDE;
50
virtual ash::ShelfMenuModel* CreateApplicationMenu(int
event_flags
) OVERRIDE;
/external/chromium_org/ui/app_list/views/
search_result_list_view.h
57
int
event_flags
) OVERRIDE;
60
int
event_flags
) OVERRIDE;
app_list_main_view.cc
206
void AppListMainView::ActivateApp(AppListItemModel* item, int
event_flags
) {
211
item->Activate(
event_flags
);
232
void AppListMainView::OpenResult(SearchResult* result, int
event_flags
) {
233
delegate_->OpenSearchResult(result,
event_flags
);
238
int
event_flags
) {
239
delegate_->InvokeSearchResultAction(result, action_index,
event_flags
);
/external/chromium_org/ui/base/cocoa/
cocoa_event_utils.mm
66
int
event_flags
= EventFlagsFromNSEventWithModifiers(event, modifiers);
67
return ui::DispositionFromEventFlags(
event_flags
);
/external/qemu/telephony/
sysdeps.h
39
typedef void (*SysChannelCallback)( void* opaque, int
event_flags
);
48
int
event_flags
,
/external/chromium_org/chrome/browser/status_icons/
status_icon_menu_model.h
37
// The passed |
event_flags
| are the flags from the event which issued this
39
virtual void ExecuteCommand(int command_id, int
event_flags
) = 0;
103
virtual void ExecuteCommand(int command_id, int
event_flags
) OVERRIDE;
/external/chromium_org/chrome/browser/ui/app_list/
app_list_controller_delegate_impl.cc
92
int
event_flags
) {
93
LaunchApp(profile, extension, source,
event_flags
);
100
int
event_flags
) {
extension_app_item.h
73
void Launch(int
event_flags
);
87
virtual void Activate(int
event_flags
) OVERRIDE;
92
virtual void ExecuteLaunchCommand(int
event_flags
) OVERRIDE;
extension_app_item.cc
207
void ExtensionAppItem::Launch(int
event_flags
) {
219
event_flags
);
243
void ExtensionAppItem::Activate(int
event_flags
) {
257
event_flags
);
277
void ExtensionAppItem::ExecuteLaunchCommand(int
event_flags
) {
278
Launch(
event_flags
);
/external/chromium_org/ash/shell/
app_list.cc
108
static void ActivateItem(Type type, int
event_flags
) {
141
virtual void Activate(int
event_flags
) OVERRIDE {
142
ActivateItem(type_,
event_flags
);
266
int
event_flags
) OVERRIDE {
269
WindowTypeLauncherItem::ActivateItem(example_result->type(),
event_flags
);
274
int
event_flags
) OVERRIDE {
/external/chromium_org/ash/shelf/
shelf_item_delegate.h
54
// |
event_flags
| specifies the flags of the event which triggered this menu.
55
virtual ShelfMenuModel* CreateApplicationMenu(int
event_flags
) = 0;
/external/chromium_org/ash/wm/
drag_window_resizer.h
36
virtual void Drag(const gfx::Point& location, int
event_flags
) OVERRIDE;
37
virtual void CompleteDrag(int
event_flags
) OVERRIDE;
/external/chromium_org/ash/wm/panels/
panel_window_resizer.h
36
virtual void Drag(const gfx::Point& location, int
event_flags
) OVERRIDE;
37
virtual void CompleteDrag(int
event_flags
) OVERRIDE;
/external/chromium_org/chrome/browser/ui/ash/
chrome_new_window_delegate_chromeos.cc
39
//
event_flags
= 0 means this invokes the same behavior as the launcher
43
0 /*
event_flags
*/,
/external/chromium_org/chrome/browser/ui/ash/multi_user/
multi_user_context_menu_chromeos.cc
38
virtual void ExecuteCommand(int command_id, int
event_flags
) OVERRIDE;
53
int
event_flags
) {
/external/chromium_org/chrome/browser/ui/cocoa/toolbar/
back_forward_menu_controller.mm
95
int
event_flags
= ui::EventFlagsFromNSEvent([NSApp currentEvent]);
96
model_->ActivatedAt(menuID,
event_flags
);
/external/chromium_org/chrome/browser/ui/views/tab_contents/
render_view_context_menu_win.cc
44
int
event_flags
) {
77
RenderViewContextMenu::ExecuteCommand(command_id,
event_flags
);
/external/chromium_org/ui/app_list/test/
app_list_test_view_delegate.h
51
int
event_flags
) OVERRIDE;
54
int
event_flags
) OVERRIDE {}
/external/chromium/chrome/browser/ui/views/infobars/
confirm_infobar.h
36
virtual void LinkActivated(views::Link* source, int
event_flags
);
Completed in 2569 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>