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

1 2 3 4

  /external/chromium_org/ui/events/
gesture_event_details.cc 12 float delta_x,
20 data.scroll_begin.x_hint = delta_x;
25 data.scroll_update.x = delta_x;
30 data.fling_velocity.x = delta_x;
35 data.first_finger_enclosing_rectangle.width = delta_x;
40 data.scale = delta_x;
45 data.swipe.left = delta_x < 0;
46 data.swipe.right = delta_x > 0;
54 data.tap_count = static_cast<int>(delta_x);
59 if (delta_x != 0.f || delta_y != 0.f)
    [all...]
gesture_event_details.h 19 GestureEventDetails(EventType type, float delta_x, float delta_y);
  /external/chromium_org/ash/wm/
window_resizer.h 82 void AdjustDeltaForTouchResize(int* delta_x, int* delta_y);
86 gfx::Point GetOriginForDrag(int delta_x, int delta_y);
89 gfx::Size GetSizeForDrag(int* delta_x, int* delta_y);
92 int GetWidthForDrag(int min_width, int* delta_x);
window_resizer.cc 126 int delta_x = location.x() - details().initial_location_in_parent.x(); local
129 AdjustDeltaForTouchResize(&delta_x, &delta_y);
134 gfx::Size size = GetSizeForDrag(&delta_x, &delta_y);
135 gfx::Point origin = GetOriginForDrag(delta_x, delta_y);
247 void WindowResizer::AdjustDeltaForTouchResize(int* delta_x, int* delta_y) {
254 *delta_x += details().initial_location_in_parent.x() -
257 *delta_x += details().initial_location_in_parent.x() -
272 gfx::Point WindowResizer::GetOriginForDrag(int delta_x, int delta_y) {
278 origin.Offset(delta_x, 0);
285 gfx::Size WindowResizer::GetSizeForDrag(int* delta_x, int* delta_y)
    [all...]
  /external/chromium_org/content/browser/renderer_host/
overscroll_controller_delegate.h 27 virtual void OnOverscrollUpdate(float delta_x, float delta_y) = 0;
overscroll_controller.h 95 void ProcessOverscroll(float delta_x,
  /external/chromium_org/content/browser/web_contents/aura/
gesture_nav_simple.h 35 void ApplyEffectsForDelta(float delta_x);
39 virtual void OnOverscrollUpdate(float delta_x, float delta_y) OVERRIDE;
gesture_nav_simple.cc 148 void GestureNavSimple::ApplyEffectsForDelta(float delta_x) {
152 CHECK_GE(delta_x, 0.f);
153 double complete = std::min(1.f, delta_x / completion_threshold_);
166 void GestureNavSimple::OnOverscrollUpdate(float delta_x, float delta_y) {
167 ApplyEffectsForDelta(std::abs(delta_x) + 50.f);
  /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/ceres-solver/internal/ceres/
low_rank_inverse_hessian.cc 88 bool LowRankInverseHessian::Update(const Vector& delta_x,
90 const double delta_x_dot_delta_gradient = delta_x.dot(delta_gradient);
111 delta_x_history_.col(next) = delta_x;
low_rank_inverse_hessian.h 78 // Update the low rank approximation. delta_x is the change in the
80 // gradient. The update copies the delta_x and delta_gradient
81 // vectors, and gets rid of the oldest delta_x and delta_gradient
84 bool Update(const Vector& delta_x, const Vector& delta_gradient);
line_search_direction.cc 174 const Vector delta_x = previous.search_direction * previous.step_size; local
176 const double delta_x_dot_delta_gradient = delta_x.dot(delta_gradient);
266 // using: y_k = delta_gradient, s_k = delta_x:
298 Matrix A = delta_x * (delta_gradient.transpose() *
309 rankUpdate(delta_x, delta_x_times_delta_x_transpose_scale_factor);
  /external/chromium_org/cc/test/
animation_test_common.cc 87 int delta_x,
91 start_operations.AppendTranslate(delta_x, delta_y, 0.0);
95 operations.AppendTranslate(delta_x, delta_y, 0.0);
263 int delta_x,
267 delta_x,
305 int delta_x,
307 return AddAnimatedTransform(layer, duration, delta_x, delta_y);
312 int delta_x,
316 delta_x,
animation_test_common.h 129 int delta_x,
151 int delta_x,
156 int delta_x,
  /external/chromium_org/ppapi/api/
pp_input_event.idl 150 float_t delta_x;
177 * as for <code>delta_x</code> and <code>delta_y</code>.
197 * Indicates if the scroll <code>delta_x</code>/<code>delta_y</code>
  /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)
  /external/chromium_org/ui/events/gestures/
gesture_provider_aura.cc 137 const float delta_x = previous_tap.x - current_tap.x; local
139 return (delta_x * delta_x + delta_y * delta_y < double_tap_slop_square);
  /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);
  /external/chromium_org/ui/gfx/geometry/
point_base.h 31 void Offset(Type delta_x, Type delta_y) {
32 x_ += 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/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/ui/events/gesture_detection/
gesture_detector.cc 333 const float delta_x = focus_x - down_focus_x_; local
335 const float distance_square = delta_x * delta_x + delta_y * delta_y;
521 const float delta_x = first_down.GetX() - second_down.GetX();
523 return (delta_x * delta_x + delta_y * delta_y < double_tap_slop_square_);
  /external/chromium_org/content/browser/web_contents/
web_contents_view_aura.h 91 gfx::Vector2d GetTranslationForOverscroll(int delta_x, int delta_y);
98 // overscroll (|delta_x|, in pixels).
99 void UpdateOverscrollWindowBrightness(float delta_x);
142 virtual void OnOverscrollUpdate(float delta_x, float delta_y) OVERRIDE;
  /external/chromium_org/cc/output/
direct_renderer.cc 27 float delta_x = right - left; local
30 if (!delta_x || !delta_y)
32 proj.matrix().set(0, 0, 2.0f / delta_x);
33 proj.matrix().set(0, 3, -(right + left) / delta_x);
  /external/chromium_org/remoting/client/jni/
chromoting_jni_instance.h 87 void SendMouseWheelEvent(int delta_x, int delta_y);

Completed in 1414 milliseconds

1 2 3 4