Home
last modified time | relevance | path

Searched refs:new_x (Results 1 – 10 of 10) 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()
65 EXPECT_EQ(x, new_x); in TEST_F()
84 EXPECT_TRUE(browser->GetFindWindowLocation(&new_x, &new_y)); in TEST_F()
86 EXPECT_EQ(x, new_x); in TEST_F()
/external/opencv/cv/src/
Dcvemd.cpp836 CvNode2D *new_x; in icvFindLoop() local
843 new_x = loop[0] = enter_x; in icvFindLoop()
852 new_x = state->rows_x[new_x->i]; in icvFindLoop()
853 while( new_x != 0 && is_used[new_x - _x] ) in icvFindLoop()
854 new_x = new_x->next[0]; in icvFindLoop()
859 new_x = state->cols_x[new_x->j]; in icvFindLoop()
860 while( new_x != 0 && is_used[new_x - _x] && new_x != enter_x ) in icvFindLoop()
861 new_x = new_x->next[1]; in icvFindLoop()
862 if( new_x == enter_x ) in icvFindLoop()
866 if( new_x != 0 ) /* found the next x */ in icvFindLoop()
[all …]
/external/qemu/distrib/sdl-1.2.15/src/video/caca/
DSDL_cacaevents.c88 int new_x = 0, new_y = 0; in Caca_PumpEvents() local
89 new_x = ((event & 0x00fff000) >> 12) * Caca_w / caca_get_width(); 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.c263 Sint16 new_x = regs.r[0]; /* Initialy get as OS units */ in RISCOS_PollMouseHelper() local
272 if (new_x != last_x || new_y != last_y || last_buttons != regs.r[2]) in RISCOS_PollMouseHelper()
296 x = new_x - topLeftX; in RISCOS_PollMouseHelper()
303 if (last_x != new_x || last_y != new_y) in RISCOS_PollMouseHelper()
336 last_x = new_x; in RISCOS_PollMouseHelper()
/external/webkit/Source/WebKit/efl/ewk/
Dewk_tiled_backing_store.c1599 Evas_Coord new_x = cx + (priv->view.offset.cur.x - cx) * scale; in _ewk_tiled_backing_store_zoom_set_internal() local
1607 if (model_width < priv->view.w || new_x >= 0) in _ewk_tiled_backing_store_zoom_set_internal()
1608 new_x = 0; in _ewk_tiled_backing_store_zoom_set_internal()
1609 else if (-new_x + priv->view.w >= model_width) in _ewk_tiled_backing_store_zoom_set_internal()
1610 new_x = -model_width + priv->view.w; in _ewk_tiled_backing_store_zoom_set_internal()
1617 bx = new_x % tw; in _ewk_tiled_backing_store_zoom_set_internal()
1618 priv->model.base.col = - new_x / tw; in _ewk_tiled_backing_store_zoom_set_internal()
1625 priv->view.offset.cur.x = new_x; in _ewk_tiled_backing_store_zoom_set_internal()
1637 new_x + priv->view.x, in _ewk_tiled_backing_store_zoom_set_internal()
1698 Evas_Coord new_x = cx + (priv->view.offset.cur.x - cx) * scale; in ewk_tiled_backing_store_zoom_weak_set() local
[all …]
/external/chromium/chrome/browser/ui/gtk/tabs/
Dtab_gtk.cc281 gdouble new_x; 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()
Dtab_strip_gtk.cc426 double new_x = start_tab_a_bounds_.x() + delta; in AnimationProgressed() local
427 gfx::Rect bounds(Round(new_x), start_tab_a_bounds_.y(), tab_a_->width(), in AnimationProgressed()
434 new_x = start_tab_b_bounds_.x() + delta; in AnimationProgressed()
435 bounds = gfx::Rect(Round(new_x), start_tab_b_bounds_.y(), tab_b_->width(), in AnimationProgressed()
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
DSDL_dibvideo.c1385 int new_x = 10; local
1392 new_x = data.primary.left + (primary_w - this->screen->w)/2;
1395 DIB_SetWinPos(this, new_x, new_y);
/external/qemu/android/skin/
Dwindow.c1257 int new_x, new_y; in skin_window_create() local
1265 new_x = (monitor.w - win_w)/2; in skin_window_create()
1273 SDL_WM_SetPos(new_x, new_y); in skin_window_create()
/external/chromium/chrome/browser/ui/views/tabs/
Ddragged_tab_controller.cc927 int new_x = attached_tabstrip_->GetSizeNeededForTabs(tabs_to_source) - in Attach() local
931 mouse_offset_.set_x(new_x); in Attach()