Home
last modified time | relevance | path

Searched refs:deltay (Results 1 – 7 of 7) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/input/event/
DTouchEvent.java111 public TouchEvent(Type type, float x, float y, float deltax, float deltay) { in TouchEvent() argument
112 set(type, x, y, deltax, deltay); in TouchEvent()
119 public void set(Type type, float x, float y, float deltax, float deltay) { in set() argument
124 this.deltaY = deltay; in set()
/external/libvpx/vp8/common/
Dtextblit.c64 int deltax, deltay; in vp8_blit_line() local
92 deltay = abs(y1 - y0); in vp8_blit_line()
108 error = error - deltay; in vp8_blit_line()
122 error = error - deltay; in vp8_blit_line()
/external/quake/quake/src/QW/server/
Dsv_move.c286 float deltax,deltay; in SV_NewChaseDir() local
294 deltay = enemy->v.origin[1] - actor->v.origin[1]; in SV_NewChaseDir()
301 if (deltay<-10) in SV_NewChaseDir()
303 else if (deltay>10) in SV_NewChaseDir()
321 if ( ((rand()&3) & 1) || abs(deltay)>abs(deltax)) in SV_NewChaseDir()
/external/quake/quake/src/WinQuake/
Dsv_move.cpp286 float deltax,deltay; in SV_NewChaseDir() local
294 deltay = enemy->u.v.origin[1] - actor->u.v.origin[1]; in SV_NewChaseDir()
301 if (deltay<-10) in SV_NewChaseDir()
303 else if (deltay>10) in SV_NewChaseDir()
321 if ( ((rand()&3) & 1) || abs((int) deltay)>abs((int) deltax)) in SV_NewChaseDir()
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
DSDL_x11events.c336 int deltax, deltay; in X11_WarpedMotion() local
342 deltay = xevent->xmotion.y - mouse_last.y; in X11_WarpedMotion()
344 printf("Warped mouse motion: %d,%d\n", deltax, deltay); in X11_WarpedMotion()
348 posted = SDL_PrivateMouseMotion(0, 1, deltax, deltay); in X11_WarpedMotion()
357 deltay = xevent->xmotion.y - mouse_last.y; in X11_WarpedMotion()
359 printf("Extra mouse motion: %d,%d\n", deltax, deltay); in X11_WarpedMotion()
363 posted += SDL_PrivateMouseMotion(0, 1, deltax, deltay); in X11_WarpedMotion()
/external/chromium/chrome/browser/ui/cocoa/
Ddraggable_button.mm89 float deltay = [nextEvent locationInWindow].y -
93 yDelta:deltay
97 yDelta:deltay
/external/webkit/Source/WebKit/mac/Misc/
DWebNSViewExtras.m97 … float deltay = ABS([nextEvent locationInWindow].y - [mouseDownEvent locationInWindow].y);
105 if (deltay >= yHysteresis) {