HomeSort by relevance Sort by last modified time
    Searched refs:delta_x (Results 1 - 16 of 16) sorted by null

  /external/chromium/chrome/browser/ui/panels/
panel_manager.h 54 void Drag(int delta_x);
87 void DragNegative(int delta_x);
88 void DragPositive(int delta_x);
panel_manager.cc 148 void PanelManager::Drag(int delta_x) {
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) {
167 DCHECK(delta_x < 0);
173 int dragging_panel_x = dragging_panel->bounds().x() + delta_x;
210 void PanelManager::DragPositive(int delta_x) {
    [all...]
  /external/chromium/chrome/browser/ui/touch/tabs/
touch_tab_strip.cc 207 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) {
243 scroll_offset_ = initial_scroll_offset_ + delta_x;
touch_tab_strip.h 95 // Adjust the positions of the tabs to perform a scroll of |delta_x| relative
97 void ScrollTo(int delta_x);
  /external/chromium/ui/gfx/
point.h 52 void Offset(int delta_x, int delta_y) {
53 x_ += delta_x;
  /external/chromium/chrome/browser/ui/tabs/
dock_info.cc 34 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/
testgl.c 306 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...]
  /hardware/qcom/display/libcopybit/
copybit.cpp 170 uint32_t W, H, delta_x, delta_y; local
172 delta_x = (clip.t - dst->t);
179 delta_x = (clip.l - dst->l);
187 MULDIV(&delta_x, &e->src_rect.w, src->r - src->l, W);
190 e->src_rect.x = delta_x + src->l;
  /external/opencv/cvaux/src/
cvscanlines.cpp 1130 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
    [all...]
cvlee.cpp 4642 float delta_x = pPoint1->x - pPoint2->x; local
    [all...]
  /external/bluetooth/bluedroid/bta/hh/
bta_hh_utils.c 376 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/
dragged_tab_gtk.cc 146 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/
bta_hh_api.h 241 INT8 delta_x; /* displacement x */ member in struct:__anon2720
  /external/freetype/src/truetype/
ttgload.c 239 FT_Pos delta_x,
245 if ( delta_x )
247 coords[k].x += delta_x;
    [all...]
  /external/skia/legacy/src/core/
SkGeometry.cpp 59 SkScalar delta_x = pts[1].fX - pts[0].fX; local
60 SkScalar slope = SkScalarDiv(delta_y, delta_x);
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 59 SkScalar delta_x = pts[1].fX - pts[0].fX; local
60 SkScalar slope = SkScalarDiv(delta_y, delta_x);
    [all...]

Completed in 365 milliseconds