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

1 2 3

  /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/base/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 19 GestureEventDetails(EventType type, float delta_x, float delta_y);
21 float delta_x, float delta_y,
  /external/chromium_org/content/browser/renderer_host/
overscroll_controller_delegate.h 22 virtual void OnOverscrollUpdate(float delta_x, float delta_y) = 0;
overscroll_controller.h 98 void ProcessOverscroll(float delta_x, float delta_y);
  /external/chromium_org/ash/wm/
window_resizer.h 115 int* delta_y);
121 int delta_y);
126 int* delta_y);
136 int* delta_y);
window_resizer.cc 192 int delta_y = location.y() - details.initial_location_in_parent.y(); local
194 AdjustDeltaForTouchResize(details, &delta_x, &delta_y);
199 gfx::Size size = GetSizeForDrag(details, &delta_x, &delta_y);
200 gfx::Point origin = GetOriginForDrag(details, delta_x, delta_y);
296 int* delta_y) {
312 *delta_y += details.initial_location_in_parent.y() -
315 *delta_y += details.initial_location_in_parent.y() -
324 int delta_y) {
332 origin.Offset(0, delta_y);
340 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.h 97 int delta_y);
114 int delta_y);
119 int delta_y);
animation_test_common.cc 60 int delta_y) {
66 start_operations.AppendTranslate(delta_x, delta_y, 0.0);
74 operations.AppendTranslate(delta_x, delta_y, 0.0);
191 int delta_y) {
195 delta_y);
225 int delta_y) {
226 return AddAnimatedTransform(layer, duration, delta_x, delta_y);
232 int delta_y) {
236 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_org/remoting/client/plugin/
pepper_input_handler.cc 124 int delta_y = static_cast<int>(wheel_delta_y_); local
125 if (delta_x != 0 || delta_y != 0) {
127 wheel_delta_y_ -= delta_y;
130 mouse_event.set_wheel_delta_y(delta_y);
  /external/chromium/ui/gfx/
point.h 52 void Offset(int delta_x, int delta_y) {
54 y_ += delta_y;
  /external/chromium_org/ui/gfx/
point_base.h 31 void Offset(Type delta_x, Type delta_y) {
33 y_ += delta_y;
blit.cc 69 CGFloat delta_y = flipped ? CGBitmapContextGetHeight(src_context) -
72 src_rect.Offset(transform.tx, 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/content/browser/web_contents/
web_contents_view_aura.h 88 gfx::Vector2d GetTranslationForOverscroll(int delta_x, int delta_y);
100 void OverscrollUpdateForWebContentsDelegate(int delta_y);
148 virtual void OnOverscrollUpdate(float delta_x, float delta_y) OVERRIDE;
  /external/chromium_org/cc/output/
direct_renderer.cc 26 float delta_y = top - bottom; local
28 if (!delta_x || !delta_y)
32 proj.matrix().setDouble(1, 1, 2.0f / delta_y);
33 proj.matrix().setDouble(1, 3, -(top + bottom) / delta_y);
  /external/chromium_org/remoting/host/
input_injector_mac.cc 257 int delta_y = static_cast<int>(event.wheel_delta_y()); local
259 NULL, kCGScrollEventUnitPixel, 2, delta_y, delta_x));
  /hardware/qcom/display/msm8960/libcopybit/
copybit.cpp 170 uint32_t W, H, delta_x, delta_y; local
173 delta_y = (dst->r - clip.r);
180 delta_y = (clip.t - dst->t);
188 MULDIV(&delta_y, &e->src_rect.h, src->b - src->t, H);
191 e->src_rect.y = delta_y + src->t;
  /hardware/qcom/display/msm8974/libcopybit/
copybit.cpp 173 uint32_t W, H, delta_x, delta_y; local
176 delta_y = (dst->r - clip.r);
183 delta_y = (clip.t - dst->t);
191 MULDIV(&delta_y, &e->src_rect.h, src->b - src->t, H);
194 e->src_rect.y = delta_y + src->t;

Completed in 467 milliseconds

1 2 3