Searched refs:mouse_x (Results 1 - 6 of 6) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/aalib/
H A DSDL_aaevents.c45 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/
H A DSDL_ggievents.c63 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/
H A Ddocked_panel_collection.h79 bool ShouldBringUpTitlebars(int mouse_x, int mouse_y) const;
H A Dpanel_manager.h115 bool ShouldBringUpTitlebars(int mouse_x, int mouse_y) const;
H A Ddocked_panel_collection.cc455 bool DockedPanelCollection::ShouldBringUpTitlebars(int mouse_x, argument
497 if (bounds.x() <= mouse_x && mouse_x <= bounds.right() &&
H A Dpanel_manager.cc500 bool PanelManager::ShouldBringUpTitlebars(int mouse_x, int mouse_y) const { argument
501 return docked_collection_->ShouldBringUpTitlebars(mouse_x, mouse_y);

Completed in 600 milliseconds