Home
last modified time | relevance | path

Searched refs:new_y (Results 1 – 7 of 7) sorted by relevance

/external/chromium/chrome/browser/ui/views/
Dfind_bar_host_uitest.cc62 int new_x = -1, new_y = -1; in TEST_F() local
63 EXPECT_TRUE(browser->GetFindWindowLocation(&new_x, &new_y)); in TEST_F()
66 EXPECT_EQ(y, new_y); in TEST_F()
84 EXPECT_TRUE(browser->GetFindWindowLocation(&new_x, &new_y)); in TEST_F()
87 EXPECT_EQ(y, new_y); in TEST_F()
/external/qemu/distrib/sdl-1.2.15/src/video/caca/
DSDL_cacaevents.c88 int new_x = 0, new_y = 0; in Caca_PumpEvents() local
90 new_y = ((event & 0x00000fff) >> 0) * Caca_h / caca_get_height(); in Caca_PumpEvents()
91 posted += SDL_PrivateMouseMotion(0, 0, new_x, new_y); in Caca_PumpEvents()
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
DSDL_riscosevents.c264 Sint16 new_y = regs.r[1]; in RISCOS_PollMouseHelper() local
272 if (new_x != last_x || new_y != last_y || last_buttons != regs.r[2]) in RISCOS_PollMouseHelper()
297 y = topLeftY - new_y; /* Y goes from top of window/screen */ in RISCOS_PollMouseHelper()
303 if (last_x != new_x || last_y != new_y) in RISCOS_PollMouseHelper()
337 last_y = new_y; in RISCOS_PollMouseHelper()
/external/webkit/Source/WebKit/efl/ewk/
Dewk_tiled_backing_store.c1600 Evas_Coord new_y = cy + (priv->view.offset.cur.y - cy) * scale; in _ewk_tiled_backing_store_zoom_set_internal() local
1612 if (model_height < priv->view.h || new_y >= 0) in _ewk_tiled_backing_store_zoom_set_internal()
1613 new_y = 0; in _ewk_tiled_backing_store_zoom_set_internal()
1614 else if (-new_y + priv->view.h >= model_height) in _ewk_tiled_backing_store_zoom_set_internal()
1615 new_y = -model_height + priv->view.h; in _ewk_tiled_backing_store_zoom_set_internal()
1619 by = new_y % th; in _ewk_tiled_backing_store_zoom_set_internal()
1620 priv->model.base.row = - new_y / th; in _ewk_tiled_backing_store_zoom_set_internal()
1626 priv->view.offset.cur.y = new_y; in _ewk_tiled_backing_store_zoom_set_internal()
1638 new_y + priv->view.y); in _ewk_tiled_backing_store_zoom_set_internal()
1699 Evas_Coord new_y = cy + (priv->view.offset.cur.y - cy) * scale; in ewk_tiled_backing_store_zoom_weak_set() local
[all …]
/external/chromium/chrome/browser/ui/gtk/tabs/
Dtab_gtk.cc282 gdouble new_y; in DidProcessEvent() local
283 gdk_event_get_root_coords(event, &new_x, &new_y); in DidProcessEvent()
286 static_cast<gint>(new_x), static_cast<gint>(new_y))) { in DidProcessEvent()
/external/qemu/android/skin/
Dwindow.c1257 int new_x, new_y; in skin_window_create() local
1266 new_y = (monitor.h - win_h)/2; in skin_window_create()
1269 if (new_y < 0) in skin_window_create()
1270 new_y = 0; in skin_window_create()
1273 SDL_WM_SetPos(new_x, new_y); in skin_window_create()
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
DSDL_dibvideo.c1386 int new_y = 10; local
1393 new_y = data.primary.top + (primary_h - this->screen->h)/2;
1395 DIB_SetWinPos(this, new_x, new_y);