Searched refs:scrollPoint (Results 1 - 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/history/qt/
H A DHistoryItemQt.cpp48 WebCore::IntPoint scrollPoint; local
57 in >> scrollPoint >> dailyVisitCounts >> weeklyVisitCounts;
67 setScrollPoint(scrollPoint);
102 out << visitCount() << documentState() << scrollPoint();
/external/webkit/Source/WebCore/platform/
H A DHostWindow.h55 virtual void delegatedScrollRequested(const IntPoint& scrollPoint) = 0;
H A DScrollView.cpp356 IntPoint ScrollView::adjustScrollPositionWithinRange(const IntPoint& scrollPoint) const
358 IntPoint newScrollPosition = scrollPoint.shrunkTo(maximumScrollPosition());
436 void ScrollView::setScrollPosition(const IntPoint& scrollPoint) argument
442 platformSetScrollPosition(scrollPoint);
448 hostWindow()->delegatedScrollRequested(scrollPoint);
450 m_actualVisibleContentRect.setLocation(scrollPoint);
455 IntPoint newScrollPosition = adjustScrollPositionWithinRange(scrollPoint);
598 IntPoint scrollPoint = adjustScrollPositionWithinRange(IntPoint(desiredOffset)); local
599 IntSize scroll(scrollPoint.x(), scrollPoint
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DScrollViewMac.mm147 void ScrollView::platformSetScrollPosition(const IntPoint& scrollPoint)
150 NSPoint floatPoint = scrollPoint;
152 [documentView() scrollPoint:tempPoint];
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDocumentInternal.h77 - (NSPoint)scrollPoint;
H A DWebDynamicScrollBarsView.mm225 // The call to [NSView scrollPoint:] fires off notification the handler for which needs to know that
229 [documentView scrollPoint:NSMakePoint(_private->scrollPositionExcludingOrigin.x + documentRect.origin.x, _private->scrollPositionExcludingOrigin.y + documentRect.origin.y)];
H A DWebPDFView.mm760 - (NSPoint)scrollPoint
774 [[[realDocView enclosingScrollView] documentView] scrollPoint:p];
/external/webkit/Source/WebCore/page/
H A DChrome.h74 virtual void delegatedScrollRequested(const IntPoint& scrollPoint);
H A DChrome.cpp91 void Chrome::delegatedScrollRequested(const IntPoint& scrollPoint) argument
93 m_client->delegatedScrollRequested(scrollPoint);
H A DFrameView.cpp1484 void FrameView::setScrollPosition(const IntPoint& scrollPoint) argument
1489 ScrollView::setScrollPosition(scrollPoint);
/external/webkit/Source/WebKit/chromium/src/
H A DWebHistoryItem.cpp158 return m_private->scrollPoint();
/external/webkit/Source/WebCore/platform/wx/
H A DScrollViewWx.cpp179 void ScrollView::platformSetScrollPosition(const IntPoint& scrollPoint) argument
185 wxPoint newScrollOffset(scrollPoint);
/external/webkit/Source/WebCore/history/
H A DHistoryItem.h125 const IntPoint& scrollPoint() const;
H A DHistoryItem.cpp406 const IntPoint& HistoryItem::scrollPoint() const function in class:WebCore::HistoryItem
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.h121 virtual void delegatedScrollRequested(const IntPoint& scrollPoint);
/external/webkit/Source/WebCore/loader/
H A DHistoryController.cpp125 view->setScrollPosition(m_currentItem->scrollPoint());
126 m_frame->scalePage(m_currentItem->pageScaleFactor(), m_currentItem->scrollPoint());
/external/webkit/Source/WebKit/mac/History/
H A DWebHistoryItem.mm414 - (NSPoint)scrollPoint
417 return core(_private)->scrollPoint();
/external/webkit/Source/WebCore/rendering/
H A DRenderListBox.cpp501 IntPoint scrollPoint(0, 0);
502 scrollPoint.setY(absOffset.y() + yDelta);
503 int newOffset = scrollToward(scrollPoint);
/external/webkit/Source/WebKit/android/jni/
H A DWebHistory.cpp496 const int scrollX = item->scrollPoint().x();
498 const int scrollY = item->scrollPoint().y();
H A DWebViewCore.cpp1117 WebCore::IntPoint currentPoint = history->currentItem()->scrollPoint();

Completed in 1023 milliseconds