Searched refs:newScrollPosition (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/page/scrolling/mac/
H A DScrollingTreeScrollingNodeMac.mm298 IntPoint newScrollPosition = scrollPosition;
299 newScrollPosition = newScrollPosition.shrunkTo(maximumScrollPosition());
300 newScrollPosition = newScrollPosition.expandedTo(minimumScrollPosition());
302 setScrollPositionWithoutContentEdgeConstraints(newScrollPosition);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollView.cpp326 IntPoint newScrollPosition = scrollPoint.shrunkTo(maximumScrollPosition());
327 newScrollPosition = newScrollPosition.expandedTo(minimumScrollPosition());
328 return newScrollPosition;
423 IntPoint newScrollPosition = adjustScrollPositionWithinRange(scrollPoint); local
425 if (newScrollPosition == scrollPosition())
428 if (requestScrollPositionUpdate(newScrollPosition))
431 updateScrollbars(IntSize(newScrollPosition.x(), newScrollPosition.y()));
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebPage.cpp1228 IntPoint newScrollPosition(IntPoint(max(0, static_cast<int>(roundf(anchor.x() - anchorOffset.x() / inverseScale))),
1236 newScrollPosition = calculateReflowedScrollPosition(anchorOffset, scale == minimumScale() ? 1 : inverseScale);
1241 setScrollPosition(newScrollPosition);
1590 IntPoint newScrollPosition = scrollPosition(); local
1593 IntPoint scrollPositionWithHeightShrunk = IntPoint(newScrollPosition.x(), maximumScrollPosition().y());
1594 newScrollPosition = newScrollPosition.shrunkTo(scrollPositionWithHeightShrunk);
1598 IntPoint scrollPositionWithWidthShrunk = IntPoint(maximumScrollPosition().x(), newScrollPosition.y());
1599 newScrollPosition = newScrollPosition
1611 zoomAboutPoint(initialScale(), newScrollPosition); local
[all...]

Completed in 93 milliseconds