Home | History | Annotate | Download | only in rendering

Lines Matching defs:xDelta

1278     int xDelta = currentMousePosition.x() - sourcePoint.x();
1281 if (abs(xDelta) <= ScrollView::noPanScrollRadius) // at the center we let the space for the icon
1282 xDelta = 0;
1286 scrollByRecursively(adjustedScrollDelta(xDelta), adjustedScrollDelta(yDelta));
1289 void RenderLayer::scrollByRecursively(int xDelta, int yDelta)
1291 if (!xDelta && !yDelta)
1299 int newOffsetX = scrollXOffset() + xDelta;
1323 renderer()->view()->frameView()->scrollBy(IntSize(xDelta, yDelta));