Searched defs:yDelta (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderListBox.cpp484 int yDelta = currentMousePosition.y() - panStartMousePosition.y(); local
487 yDelta = max(min(yDelta, maxSpeed), -maxSpeed);
489 if (abs(yDelta) < iconRadius) // at the center we let the space for the icon
492 if (yDelta > 0)
495 else if (yDelta < 0)
496 yDelta--;
499 yDelta /= speedReducer;
502 scrollPoint.setY(absOffset.y() + yDelta);
H A DRenderLayer.cpp1280 int yDelta = currentMousePosition.y() - sourcePoint.y(); local
1284 if (abs(yDelta) <= ScrollView::noPanScrollRadius)
1285 yDelta = 0;
1287 scrollByRecursively(adjustedScrollDelta(xDelta), adjustedScrollDelta(yDelta));
1290 void RenderLayer::scrollByRecursively(int xDelta, int yDelta) argument
1292 if (!xDelta && !yDelta)
1301 int newOffsetY = scrollYOffset() + yDelta;
1324 renderer()->view()->frameView()->scrollBy(IntSize(xDelta, yDelta));

Completed in 170 milliseconds