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

1 2 3 4

  /external/chromium_org/chrome/browser/ui/views/frame/
scroll_end_effect_controller.h 24 virtual void OverscrollUpdate(int delta_y) = 0;
scroll_end_effect_controller_ash.cc 17 void ScrollEndEffectControllerAsh::OverscrollUpdate(int delta_y) {
scroll_end_effect_controller_ash.h 17 virtual void OverscrollUpdate(int delta_y) OVERRIDE;
  /external/chromium_org/ui/events/gestures/
gesture_types.cc 11 float delta_y)
17 data.scroll_update.y = delta_y;
19 data.scroll_update.y_ordinal = delta_y;
24 data.fling_velocity.y = delta_y;
26 data.fling_velocity.y_ordinal = delta_y;
31 CHECK_EQ(0.f, delta_y) << "Unknown data in delta_y for long press.";
36 data.first_finger_enclosing_rectangle.height = delta_y;
41 CHECK_EQ(0.f, delta_y) << "Unknown data in delta_y for pinch"
59 << delta_x << "," << delta_y; local
    [all...]
gesture_types.h 20 GestureEventDetails(EventType type, float delta_x, float delta_y);
22 float delta_x, float delta_y,
  /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 103 float delta_y,
  /external/chromium_org/ash/wm/
window_resizer.h 123 int* delta_y);
129 int delta_y);
134 int* delta_y);
144 int* delta_y);
window_resizer.cc 187 int delta_y = location.y() - details.initial_location_in_parent.y(); 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);
310 int* delta_y) {
326 *delta_y += details.initial_location_in_parent.y() -
329 *delta_y += details.initial_location_in_parent.y() -
338 int delta_y) {
346 origin.Offset(0, delta_y);
354 int* delta_y) {
    [all...]
  /external/chromium_org/ppapi/c/
pp_input_event.h 146 * (when scroll_by_page is true). For example, delta_y = -3 means scroll up 3
166 * (when scroll_by_page is true). For example, delta_y = -3 means scroll up 3
179 float delta_y; 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_org/cc/test/
animation_test_common.cc 59 int delta_y) {
65 start_operations.AppendTranslate(delta_x, delta_y, 0.0);
71 operations.AppendTranslate(delta_x, delta_y, 0.0);
244 int delta_y) {
248 delta_y);
286 int delta_y) {
287 return AddAnimatedTransform(layer, duration, delta_x, delta_y);
293 int delta_y) {
297 delta_y);
animation_test_common.h 126 int delta_y);
148 int delta_y);
153 int delta_y);
  /external/chromium_org/ppapi/api/
pp_input_event.idl 137 * (when scroll_by_page is true). For example, delta_y = -3 means scroll up 3
158 * (when scroll_by_page is true). For example, delta_y = -3 means scroll up 3
171 float_t delta_y;
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/ui/gfx/
point.h 52 void Offset(int delta_x, int delta_y) {
54 y_ += delta_y;
  /external/chromium_org/cc/animation/
scroll_offset_animation_curve.cc 43 float delta_y = std::abs(target_value_.y() - initial_value_.y()); local
44 float max_delta = std::max(delta_x, delta_y);
  /external/chromium_org/ui/gfx/
point_base.h 31 void Offset(Type delta_x, Type delta_y) {
33 y_ += delta_y;
  /external/chromium/chrome/browser/ui/tabs/
dock_info.cc 35 int delta_y = abs(y - screen_loc.y()); local
36 *in_enable_area = (delta_x < kPopupWidth / 2 && delta_y < kPopupHeight / 2);
38 delta_y < kHotSpotDeltaY);
50 int delta_y = abs(y - screen_loc.y()); local
85 *in_enable_area = (delta_x < enable_delta_x && delta_y < enable_delta_y);
87 delta_y < hot_spot_delta_y));
  /external/chromium_org/chrome/browser/ui/tabs/
dock_info.cc 29 int delta_y = abs(y - screen_loc.y()); local
30 *in_enable_area = (delta_x < kPopupWidth / 2 && delta_y < kPopupHeight / 2);
32 delta_y < kHotSpotDeltaY);
44 int delta_y = abs(y - screen_loc.y()); local
75 *in_enable_area = (delta_x < enable_delta_x && delta_y < enable_delta_y);
77 delta_y < hot_spot_delta_y));
  /external/qemu/distrib/sdl-1.2.15/test/
testgl.c 307 static int delta_y = 1; local
351 y += delta_y;
354 delta_y = -delta_y;
358 delta_y = -delta_y;
380 static int delta_y = 1; local
432 y += delta_y;
435 delta_y = -delta_y;
    [all...]
  /external/chromium_org/remoting/client/plugin/
pepper_input_handler.cc 160 int delta_y = static_cast<int>(wheel_delta_y_); local
161 if (delta_x != 0 || delta_y != 0) {
163 wheel_delta_y_ -= delta_y;
166 mouse_event.set_wheel_delta_y(delta_y);
  /external/chromium_org/remoting/client/jni/
chromoting_jni_instance.h 69 void PerformMouseWheelDeltaAction(int delta_x, int delta_y);
chromoting_jni_instance.cc 148 int delta_y) {
153 delta_x, delta_y));
159 action.set_wheel_delta_y(delta_y);
  /external/chromium_org/content/browser/web_contents/
web_contents_view_aura.h 85 gfx::Vector2d GetTranslationForOverscroll(int delta_x, int delta_y);
97 void OverscrollUpdateForWebContentsDelegate(int delta_y);
146 virtual void OnOverscrollUpdate(float delta_x, float delta_y) OVERRIDE;
  /external/chromium_org/mojo/examples/sample_app/
spinning_cube.cc 205 float delta_y = top - bottom; local
211 (delta_y <= 0.0f) ||
212 (delta_y <= 0.0f))
219 frust.m[1][1] = 2.0f * near_z / delta_y;
223 frust.m[2][1] = (top + bottom) / delta_y;
  /external/chromium_org/cc/output/
direct_renderer.cc 27 float delta_y = top - bottom; local
29 if (!delta_x || !delta_y)
33 proj.matrix().set(1, 1, 2.0f / delta_y);
34 proj.matrix().set(1, 3, -(top + bottom) / delta_y);

Completed in 1140 milliseconds

1 2 3 4