Searched refs:xDelta (Results 1 – 9 of 9) sorted by relevance
97 int xDelta = Mouse.getEventDX(); in update() local104 xDelta = x - curX; in update()109 x = curX + xDelta; 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()
53 - (BOOL)deltaIndicatesConclusionReachedWithXDelta:(float)xDelta64 - (BOOL)deltaIndicatesDragStartWithXDelta:(float)xDelta
47 - (BOOL)deltaIndicatesDragStartWithXDelta:(float)xDelta51 return (ABS(xDelta) >= xHysteresis) || (ABS(yDelta) >= yHysteresis);54 - (BOOL)deltaIndicatesConclusionReachedWithXDelta:(float)xDelta58 return (ABS(xDelta) >= xHysteresis) || (ABS(yDelta) >= yHysteresis);
135 final float xDelta = targetPosition.x - mCurrentCameraPosition.x; in update() local136 if (Math.abs(xDelta) > X_FOLLOW_DISTANCE) { in update()137 … mCurrentCameraPosition.x = targetPosition.x - (X_FOLLOW_DISTANCE * Utils.sign(xDelta)); in update()
126 - (BOOL)deltaIndicatesDragStartWithXDelta:(float)xDelta136 (ABS(yDelta)/ABS(xDelta)) >= kDownProportion)139 return [super deltaIndicatesDragStartWithXDelta:xDelta
2091 const CGFloat xDelta = 0.5 * bookmarks::kBookmarkHorizontalPadding;2093 CGFloat expected = xDelta;2099 expected = [targetButton left].x - baseOffset + xDelta;2104 expected = NSMaxX([targetButton frame]) + xDelta;
1279 int xDelta = currentMousePosition.x() - sourcePoint.x(); in panScrollFromPoint() local1282 if (abs(xDelta) <= ScrollView::noPanScrollRadius) // at the center we let the space for the icon in panScrollFromPoint()1283 xDelta = 0; in panScrollFromPoint()1287 scrollByRecursively(adjustedScrollDelta(xDelta), adjustedScrollDelta(yDelta)); in panScrollFromPoint()1290 void RenderLayer::scrollByRecursively(int xDelta, int yDelta) in scrollByRecursively() argument1292 if (!xDelta && !yDelta) in scrollByRecursively()1300 int newOffsetX = scrollXOffset() + xDelta; in scrollByRecursively()1324 renderer()->view()->frameView()->scrollBy(IntSize(xDelta, yDelta)); in scrollByRecursively()
240 void scrollByRecursively(int xDelta, int yDelta);
94565 …rollFromPoint): now calls the scrollByRecursively method when it has computed the xDelta and yDelta94566 …(WebCore::RenderLayer::scrollByRecursively): try to scroll the current layer by the xDelta and yDe…