Searched refs:yDelta (Results 1 – 9 of 9) sorted by relevance
/external/chromium/chrome/browser/ui/cocoa/ |
D | draggable_button.h | 54 yDelta:(float)yDelta 65 yDelta:(float)yDelta
|
D | draggable_button.mm | 48 yDelta:(float)yDelta 51 return (ABS(xDelta) >= xHysteresis) || (ABS(yDelta) >= yHysteresis); 55 yDelta:(float)yDelta 58 return (ABS(xDelta) >= xHysteresis) || (ABS(yDelta) >= yHysteresis); 93 yDelta:deltay 97 yDelta:deltay
|
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/ |
D | LwjglMouseInput.java | 98 int yDelta = Mouse.getEventDY(); in update() local 105 yDelta = y - curY; in update() 110 y = curY + yDelta; in update() 115 if (xDelta != 0 || yDelta != 0 || wheelDelta != 0){ in update() 116 … MouseMotionEvent evt = new MouseMotionEvent(x, y, xDelta, yDelta, curWheel, wheelDelta); in update()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderListBox.cpp | 484 int yDelta = currentMousePosition.y() - panStartMousePosition.y(); in panScroll() local 487 yDelta = max(min(yDelta, maxSpeed), -maxSpeed); in panScroll() 489 if (abs(yDelta) < iconRadius) // at the center we let the space for the icon in panScroll() 492 if (yDelta > 0) in panScroll() 495 else if (yDelta < 0) in panScroll() 496 yDelta--; in panScroll() 499 yDelta /= speedReducer; in panScroll() 502 scrollPoint.setY(absOffset.y() + yDelta); in panScroll()
|
D | RenderLayer.cpp | 1280 int yDelta = currentMousePosition.y() - sourcePoint.y(); in panScrollFromPoint() local 1284 if (abs(yDelta) <= ScrollView::noPanScrollRadius) in panScrollFromPoint() 1285 yDelta = 0; in panScrollFromPoint() 1287 scrollByRecursively(adjustedScrollDelta(xDelta), adjustedScrollDelta(yDelta)); in panScrollFromPoint() 1290 void RenderLayer::scrollByRecursively(int xDelta, int yDelta) in scrollByRecursively() argument 1292 if (!xDelta && !yDelta) in scrollByRecursively() 1301 int newOffsetY = scrollYOffset() + yDelta; in scrollByRecursively() 1324 renderer()->view()->frameView()->scrollBy(IntSize(xDelta, yDelta)); in scrollByRecursively()
|
D | RenderLayer.h | 240 void scrollByRecursively(int xDelta, int yDelta);
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | CameraSystem.java | 141 final float yDelta = targetPosition.y - mCurrentCameraPosition.y; in update() local 142 if (yDelta > Y_UP_FOLLOW_DISTANCE) { in update() 144 } else if (yDelta < -Y_DOWN_FOLLOW_DISTANCE) { in update()
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_button.mm | 127 yDelta:(float)yDelta 135 (yDelta <= -yHysteresis) && // Bottom of hysteresis box was hit. 136 (ABS(yDelta)/ABS(xDelta)) >= kDownProportion) 140 yDelta:yDelta
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2009-06-16 | 94565 …rollFromPoint): now calls the scrollByRecursively method when it has computed the xDelta and yDelta 94566 …:scrollByRecursively): try to scroll the current layer by the xDelta and yDelta provided, if it ca…
|