HomeSort by relevance Sort by last modified time
    Searched full:event_flags (Results 1 - 25 of 345) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/base/
window_open_disposition.cc 31 WindowOpenDisposition DispositionFromEventFlags(int event_flags) {
33 (event_flags & ui::EF_MIDDLE_MOUSE_BUTTON) != 0,
34 (event_flags & ui::EF_ALT_DOWN) != 0,
35 (event_flags & ui::EF_CONTROL_DOWN) != 0,
36 (event_flags & ui::EF_COMMAND_DOWN) != 0,
37 (event_flags & ui::EF_SHIFT_DOWN) != 0);
window_open_disposition.h 31 // event_flags are the flags as understood by ui::MouseEvent.
32 UI_EXPORT WindowOpenDisposition DispositionFromEventFlags(int event_flags);
  /external/chromium/chrome/browser/ui/views/
event_utils.cc 14 WindowOpenDisposition DispositionFromEventFlags(int event_flags) {
16 (event_flags & ui::EF_MIDDLE_BUTTON_DOWN) != 0,
17 (event_flags & ui::EF_ALT_DOWN) != 0,
18 (event_flags & ui::EF_CONTROL_DOWN) != 0,
20 (event_flags & ui::EF_SHIFT_DOWN) != 0);
event_utils.h 19 // event_flags are the flags as understood by views::MouseEvent.
20 WindowOpenDisposition DispositionFromEventFlags(int event_flags);
  /external/chromium_org/ui/app_list/views/
folder_header_view_delegate.h 16 // |event_flags| contains the flags of the keyboard/mouse event that triggers
19 const ui::Event& event_flags) = 0;
search_result_list_view_delegate.h 16 // Invoked to open given |result|. |event_flags| contains the flags of the
18 // the |event_flags| information to choose different ways to open the result.
20 int event_flags) = 0;
26 int event_flags) = 0;
apps_grid_view_delegate.h 23 // Invoked when an item is activated on the grid view. |event_flags| contains
25 virtual void ActivateApp(AppListItemModel* item, int event_flags) = 0;
search_result_view_delegate.h 16 int event_flags) = 0;
22 int event_flags) = 0;
search_result_actions_view_delegate.h 14 virtual void OnSearchResultActionActivated(size_t index, int event_flags) = 0;
  /external/chromium_org/ui/events/cocoa/
events_mac.mm 70 int event_flags = 0;
74 event_flags = event_flags | EF_CAPS_LOCK_DOWN;
77 event_flags = event_flags | EF_SHIFT_DOWN;
80 event_flags = event_flags | EF_CONTROL_DOWN;
83 event_flags = event_flags | EF_ALT_DOWN;
86 event_flags = event_flags | EF_COMMAND_DOWN
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/
app_context_menu_delegate.h 13 virtual void ExecuteLaunchCommand(int event_flags) = 0;
app_list_controller_delegate_impl.h 45 int event_flags) OVERRIDE;
49 int event_flags) OVERRIDE;
  /external/chromium_org/ui/base/accelerators/
platform_accelerator_gtk.cc 14 int event_flags = 0; local
16 event_flags |= EF_SHIFT_DOWN;
18 event_flags |= EF_CONTROL_DOWN;
20 event_flags |= EF_ALT_DOWN;
21 return event_flags;
  /external/chromium_org/chrome/browser/ui/app_list/search/
search_webstore_result.h 25 virtual void Open(int event_flags) OVERRIDE;
26 virtual void InvokeAction(int action_index, int event_flags) OVERRIDE;
search_webstore_result.cc 43 void SearchWebstoreResult::Open(int event_flags) {
52 params.disposition = ui::DispositionFromEventFlags(event_flags);
56 void SearchWebstoreResult::InvokeAction(int action_index, int event_flags) {
search_controller.h 41 void OpenResult(SearchResult* result, int event_flags);
44 int event_flags);
  /external/chromium_org/ui/views/controls/
styled_label_listener.h 20 int event_flags) = 0;
link_listener.h 17 virtual void LinkClicked(Link* source, int event_flags) = 0;
  /external/chromium_org/chrome/browser/ui/ash/launcher/
browser_shortcut_launcher_item_controller.h 35 virtual void Launch(ash::LaunchSource source, int event_flags) OVERRIDE;
39 int event_flags) OVERRIDE;
44 virtual ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) OVERRIDE;
chrome_launcher_app_menu_item.cc 27 void ChromeLauncherAppMenuItem::Execute(int event_flags) {
  /external/chromium_org/chrome/browser/ui/ash/app_list/
app_list_controller_ash.cc 71 int event_flags) {
75 event_flags);
84 int event_flags) {
88 event_flags);
app_list_controller_ash.h 34 int event_flags) OVERRIDE;
38 int event_flags) OVERRIDE;
  /external/chromium_org/ui/views/examples/
link_example.h 26 virtual void LinkClicked(Link* source, int event_flags) OVERRIDE;
  /external/chromium_org/ash/wm/
default_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/app_list/search/people/
people_result.h 27 virtual void Open(int event_flags) OVERRIDE;
28 virtual void InvokeAction(int action_index, int event_flags) OVERRIDE;

Completed in 457 milliseconds

1 2 3 4 5 6 7 8 91011>>