Searched refs:delta_x (Results 1 - 15 of 15) sorted by relevance

/external/chromium/chrome/browser/ui/panels/
H A Dpanel_manager.h54 void Drag(int delta_x);
87 void DragNegative(int delta_x);
88 void DragPositive(int delta_x);
H A Dpanel_manager.cc148 void PanelManager::Drag(int delta_x) { argument
151 if (!delta_x)
156 new_bounds.set_x(new_bounds.x() + delta_x);
160 if (delta_x > 0)
161 DragPositive(delta_x);
163 DragNegative(delta_x);
166 void PanelManager::DragNegative(int delta_x) { argument
167 DCHECK(delta_x < 0);
173 int dragging_panel_x = dragging_panel->bounds().x() + delta_x;
210 void PanelManager::DragPositive(int delta_x) { argument
[all...]
/external/chromium/chrome/browser/ui/touch/tabs/
H A Dtouch_tab_strip.cc207 int delta_x = point.x() - initial_mouse_x_; local
208 if (std::abs(delta_x) > kScrollThreshold)
211 ScrollTo(delta_x);
217 int delta_x = point.x() - initial_mouse_x_; local
220 ScrollTo(delta_x);
242 void TouchTabStrip::ScrollTo(int delta_x) { argument
243 scroll_offset_ = initial_scroll_offset_ + delta_x;
H A Dtouch_tab_strip.h95 // Adjust the positions of the tabs to perform a scroll of |delta_x| relative
97 void ScrollTo(int delta_x);
/external/chromium/ui/gfx/
H A Dpoint.h52 void Offset(int delta_x, int delta_y) { argument
53 x_ += delta_x;
/external/chromium/chrome/browser/ui/tabs/
H A Ddock_info.cc34 int delta_x = abs(x - screen_loc.x()); local
36 *in_enable_area = (delta_x < kPopupWidth / 2 && delta_y < kPopupHeight / 2);
37 return *in_enable_area || (delta_x < kHotSpotDeltaX &&
49 int delta_x = abs(x - screen_loc.x()); local
85 *in_enable_area = (delta_x < enable_delta_x && delta_y < enable_delta_y);
86 bool result = (*in_enable_area || (delta_x < hot_spot_delta_x &&
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestgl.c306 static int delta_x = 1; local
342 x += delta_x;
345 delta_x = -delta_x;
349 delta_x = -delta_x;
379 static int delta_x = 1; local
423 x += delta_x;
426 delta_x = -delta_x;
[all...]
/external/opencv/cvaux/src/
H A Dcvscanlines.cpp1130 float delta_x; local
1156 delta_x = (l_start_end[2] - l_start_end[0]) / height;
1158 l_start_end[0] += delta_x;
1159 l_start_end[2] -= delta_x;
1161 delta_x = (l_start_end[2] - l_start_end[0]) / height;
1172 l_point[0] = l_start_end[0] + i * delta_x;
1216 float delta_x; local
1241 delta_x = (r_start_end[2] - r_start_end[0]) / height;
1243 r_start_end[0] += delta_x;
1244 r_start_end[2] -= delta_x;
[all...]
H A Dcvlee.cpp4642 float delta_x = pPoint1->x - pPoint2->x; local
4644 return (float)sqrt((double)delta_x*delta_x + delta_y*delta_y);
/external/bluetooth/bluedroid/bta/hh/
H A Dbta_hh_utils.c376 p_data->delta_x = p_report[1];
383 APPL_TRACE_DEBUG2("mice move: x = %d y = %d", p_data->delta_x,
/external/chromium/chrome/browser/ui/gtk/tabs/
H A Ddragged_tab_gtk.cc146 int delta_x = (animation_end_bounds_.x() - animation_start_bounds_.x()); local
148 static_cast<int>(delta_x * animation->GetCurrentValue());
/external/bluetooth/bluedroid/bta/include/
H A Dbta_hh_api.h241 INT8 delta_x; /* displacement x */ member in struct:__anon752
/external/freetype/src/truetype/
H A Dttgload.c239 FT_Pos delta_x,
245 if ( delta_x )
247 coords[k].x += delta_x;
237 translate_array( FT_UInt n, FT_Vector* coords, FT_Pos delta_x, FT_Pos delta_y ) argument
/external/skia/legacy/src/core/
H A DSkGeometry.cpp59 SkScalar delta_x = pts[1].fX - pts[0].fX; local
60 SkScalar slope = SkScalarDiv(delta_y, delta_x);
/external/skia/src/core/
H A DSkGeometry.cpp59 SkScalar delta_x = pts[1].fX - pts[0].fX; local
60 SkScalar slope = SkScalarDiv(delta_y, delta_x);

Completed in 326 milliseconds