Home | History | Annotate | Download | only in rendering

Lines Matching defs:xDelta

1279     int xDelta = currentMousePosition.x() - sourcePoint.x();
1282 if (abs(xDelta) <= ScrollView::noPanScrollRadius) // at the center we let the space for the icon
1283 xDelta = 0;
1287 scrollByRecursively(adjustedScrollDelta(xDelta), adjustedScrollDelta(yDelta));
1290 void RenderLayer::scrollByRecursively(int xDelta, int yDelta)
1292 if (!xDelta && !yDelta)
1300 int newOffsetX = scrollXOffset() + xDelta;
1324 renderer()->view()->frameView()->scrollBy(IntSize(xDelta, yDelta));