HomeSort by relevance Sort by last modified time
    Searched refs:mouse_x (Results 1 - 6 of 6) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/video/aalib/
SDL_aaevents.c 45 int mouse_button, mouse_x, mouse_y; local
60 aa_getmouse (AA_context, &mouse_x, &mouse_y, &mouse_button);
62 mouse_x = mouse_x * this->screen->w / aa_scrwidth (AA_context);
95 if ( prev_x != mouse_x || prev_y != mouse_y ) {
96 posted += SDL_PrivateMouseMotion(0, 0, mouse_x, mouse_y);
100 prev_x = mouse_x; prev_y = mouse_y;
  /external/qemu/distrib/sdl-1.2.15/src/video/ggi/
SDL_ggievents.c 63 static int mouse_x = 0, mouse_y = 0, mouse_z = 0; local
86 if (mouse_x != ev.pmove.x || mouse_y != ev.pmove.y || mouse_z != ev.pmove.wheel)
88 x = ev.pmove.x - mouse_x;
91 mouse_x = ev.pmove.x;
  /external/chromium_org/chrome/browser/ui/panels/
docked_panel_collection.h 79 bool ShouldBringUpTitlebars(int mouse_x, int mouse_y) const;
panel_manager.h 115 bool ShouldBringUpTitlebars(int mouse_x, int mouse_y) const;
docked_panel_collection.cc 462 bool DockedPanelCollection::ShouldBringUpTitlebars(int mouse_x,
504 if (bounds.x() <= mouse_x && mouse_x <= bounds.right() &&
panel_manager.cc 508 bool PanelManager::ShouldBringUpTitlebars(int mouse_x, int mouse_y) const {
509 return docked_collection_->ShouldBringUpTitlebars(mouse_x, mouse_y);

Completed in 251 milliseconds