Searched refs:mouse_y (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);
63 mouse_y = mouse_y * this->screen->h / aa_scrheight (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)
89 y = ev.pmove.y - mouse_y;
92 mouse_y = ev.pmove.y;
/external/chromium_org/chrome/browser/ui/panels/
H A Ddocked_panel_collection.cc456 int mouse_y) const {
469 if (bottom_bar_y <= mouse_y && mouse_y <= bottom_bar_bottom)
498 mouse_y >= bounds.y())
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 Dpanel_manager.cc500 bool PanelManager::ShouldBringUpTitlebars(int mouse_x, int mouse_y) const {
501 return docked_collection_->ShouldBringUpTitlebars(mouse_x, mouse_y);

Completed in 5352 milliseconds