/external/chromium_org/cc/animation/ |
scroll_offset_animation_curve.cc | 42 float delta_x = std::abs(target_value_.x() - initial_value_.x()); local 44 float max_delta = std::max(delta_x, delta_y);
|
layer_animation_controller_unittest.cc | 420 const float delta_x = 3; local 430 operations.AppendTranslate(delta_x, delta_y, 0); 452 expected_transform.Translate(delta_x, delta_y); [all...] |
/external/chromium_org/chrome/browser/ui/panels/ |
docked_panel_drag_handler.cc | 26 int delta_x = new_bounds.x() - panel->GetBounds().x(); local 36 if (delta_x) { 38 if (delta_x > 0)
|
panel_resize_browsertest.cc | 337 int delta_x = panel->max_size().width() + 10 - panel->GetBounds().width(); local 339 mouse_location.Offset(delta_x, delta_y); 343 bounds.set_size(gfx::Size(bounds.width() + delta_x,
|
/external/chromium_org/ppapi/c/ |
pp_input_event.h | 159 float delta_x; member in struct:PP_InputEvent_Wheel 184 * as for <code>delta_x</code> and <code>delta_y</code>. 202 * Indicates if the scroll <code>delta_x</code>/<code>delta_y</code>
|
/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/chromium_org/chrome/browser/ui/tabs/ |
dock_info.cc | 28 int delta_x = abs(x - screen_loc.x()); local 30 *in_enable_area = (delta_x < kPopupWidth / 2 && delta_y < kPopupHeight / 2); 31 return *in_enable_area || (delta_x < kHotSpotDeltaX && 43 int delta_x = abs(x - screen_loc.x()); local 75 *in_enable_area = (delta_x < enable_delta_x && delta_y < enable_delta_y); 76 bool result = (*in_enable_area || (delta_x < hot_spot_delta_x &&
|
/hardware/qcom/display/msm8960/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;
|
/hardware/qcom/display/msm8x26/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/ceres-solver/internal/ceres/ |
line_search_direction.cc | 175 const Vector delta_x = previous.search_direction * previous.step_size; local 177 const double delta_x_dot_delta_gradient = delta_x.dot(delta_gradient); 225 // using: y_k = delta_gradient, s_k = delta_x: 257 Matrix A = delta_x * (delta_gradient.transpose() * 268 rankUpdate(delta_x, delta_x_times_delta_x_transpose_scale_factor);
|
/external/chromium_org/remoting/client/plugin/ |
pepper_input_handler.cc | 159 int delta_x = static_cast<int>(wheel_delta_x_); local 161 if (delta_x != 0 || delta_y != 0) { 162 wheel_delta_x_ -= delta_x; 165 mouse_event.set_wheel_delta_x(delta_x);
|
/external/chromium_org/remoting/host/ |
input_injector_mac.cc | 243 int delta_x = static_cast<int>(event.wheel_delta_x()); local 246 NULL, kCGScrollEventUnitPixel, 2, delta_y, delta_x));
|
/hardware/qcom/display/msm8974/libcopybit/ |
copybit.cpp | 173 uint32_t W, H, delta_x, delta_y; local 175 delta_x = (clip.t - dst->t); 182 delta_x = (clip.l - dst->l); 190 MULDIV(&delta_x, &e->src_rect.w, src->r - src->l, W); 193 e->src_rect.x = delta_x + src->l;
|
/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/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;
|
/external/chromium_org/ash/wm/ |
window_resizer.cc | 186 int delta_x = location.x() - details.initial_location_in_parent.x(); local 189 AdjustDeltaForTouchResize(details, &delta_x, &delta_y); 194 gfx::Size size = GetSizeForDrag(details, &delta_x, &delta_y); 195 gfx::Point origin = GetOriginForDrag(details, delta_x, delta_y); 309 int* delta_x, 317 *delta_x += details.initial_location_in_parent.x() - 320 *delta_x += details.initial_location_in_parent.x() - 337 int delta_x, 344 origin.Offset(delta_x, 0); 353 int* delta_x, [all...] |
/external/chromium_org/cc/output/ |
direct_renderer.cc | 26 float delta_x = right - left; local 29 if (!delta_x || !delta_y) 31 proj.matrix().set(0, 0, 2.0f / delta_x); 32 proj.matrix().set(0, 3, -(right + left) / delta_x);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_emit.cpp | 153 struct brw_reg delta_x = src[0]; local 158 delta_y.nr == delta_x.nr + 1 && 159 (intel->gen >= 6 || (delta_x.nr & 1) == 0)) { 160 brw_PLN(p, dst, interp, delta_x); 162 brw_LINE(p, brw_null_reg(), interp, delta_x);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_emit.cpp | 153 struct brw_reg delta_x = src[0]; local 158 delta_y.nr == delta_x.nr + 1 && 159 (intel->gen >= 6 || (delta_x.nr & 1) == 0)) { 160 brw_PLN(p, dst, interp, delta_x); 162 brw_LINE(p, brw_null_reg(), interp, 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...] |
/external/chromium_org/chrome/browser/ui/gtk/tabs/ |
dragged_view_gtk.cc | 230 int delta_x = (animation_end_bounds_.x() - animation_start_bounds_.x()); local 232 static_cast<int>(delta_x * animation->GetCurrentValue());
|
/external/chromium_org/mojo/examples/sample_app/ |
spinning_cube.cc | 204 float delta_x = right - left; local 216 frust.m[0][0] = 2.0f * near_z / delta_x; 222 frust.m[2][0] = (right + left) / delta_x;
|
/external/chromium_org/third_party/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...] |
/external/chromium_org/ui/aura/test/ |
event_generator.cc | 339 int delta_x = move_x / steps; local 373 points[i].Offset(delta_x, delta_y);
|
/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...] |