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

1 2 3 4 5 6 7 8 91011>>

  /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/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_org/chrome/browser/ui/app_list/
app_context_menu_delegate.h 13 virtual void ExecuteLaunchCommand(int event_flags) = 0;
chrome_app_list_item.h 20 // Activates the item. |event_flags| holds flags of a mouse/keyboard event
22 virtual void Activate(int event_flags) = 0;
  /external/chromium_org/ui/base/events/
event_conversion_gtk.cc 12 int event_flags = 0; local
14 event_flags |= EF_SHIFT_DOWN;
16 event_flags |= EF_CONTROL_DOWN;
18 event_flags |= EF_ALT_DOWN;
19 return event_flags;
  /external/chromium_org/ui/app_list/views/
search_result_actions_view_delegate.h 14 virtual void OnSearchResultActionActivated(size_t index, int event_flags) = 0;
search_result_view_delegate.h 16 int event_flags) = 0;
22 int event_flags) = 0;
  /external/chromium_org/ui/views/controls/
link_listener.h 17 virtual void LinkClicked(Link* source, int event_flags) = 0;
styled_label_listener.h 20 int event_flags) = 0;
  /external/chromium_org/ui/app_list/
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;
app_list_view_delegate.h 47 int event_flags) = 0;
58 virtual void OpenSearchResult(SearchResult* result, int event_flags) = 0;
64 int event_flags) = 0;
apps_grid_view_delegate.h 21 // Invoked when an item is activated on the grid view. |event_flags| contains
23 virtual void ActivateApp(AppListItemModel* item, int event_flags) = 0;
  /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;
chrome_search_result.h 39 virtual void Open(int event_flags) = 0;
42 virtual void InvokeAction(int action_index, int event_flags) = 0;
  /external/chromium_org/chrome/browser/ui/ash/app_list/
app_list_controller_ash.cc 56 Profile* profile, const extensions::Extension* extension, int event_flags) {
58 event_flags);
63 Profile* profile, const extensions::Extension* extension, int event_flags) {
65 event_flags);
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_app_menu_item.cc 27 void ChromeLauncherAppMenuItem::Execute(int event_flags) {
chrome_launcher_app_menu_item.h 38 // |event_flags| are the flags from the event which issued this command.
40 virtual void Execute(int event_flags);
chrome_launcher_app_menu_item_tab.h 31 virtual void Execute(int event_flags) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_sync_promo_view.h 25 int event_flags) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/tab_contents/
render_view_context_menu_win.h 27 virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE;
  /external/chromium_org/ui/views/examples/
link_example.cc 29 void LinkExample::LinkClicked(Link* source, int event_flags) {
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;

Completed in 377 milliseconds

1 2 3 4 5 6 7 8 91011>>