Home
last modified time | relevance | path

Searched refs:scrollAnimator (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollableArea.cpp90 ScrollAnimator* ScrollableArea::scrollAnimator() const in scrollAnimator() function in WebCore::ScrollableArea
143 return scrollAnimator()->scroll(orientation, granularity, step, delta); in scroll()
148 scrollAnimator()->scrollToOffsetWithoutAnimation(offset); in scrollToOffsetWithoutAnimation()
154 scrollToOffsetWithoutAnimation(FloatPoint(offset, scrollAnimator()->currentPosition().y())); in scrollToOffsetWithoutAnimation()
156 scrollToOffsetWithoutAnimation(FloatPoint(scrollAnimator()->currentPosition().x(), offset)); in scrollToOffsetWithoutAnimation()
162 scrollAnimator()->setCurrentPosition(position); in notifyScrollPositionChanged()
197 scrollAnimator()->notifyContentAreaScrolled(scrollPosition() - oldPosition); in scrollPositionChanged()
220 return scrollAnimator()->handleWheelEvent(wheelEvent); in handleWheelEvent()
239 if (ScrollAnimator* scrollAnimator = existingScrollAnimator()) in willStartLiveResize() local
240 scrollAnimator->willStartLiveResize(); in willStartLiveResize()
[all …]
DScrollbar.cpp292 FloatPoint currentPosition = m_scrollableArea->scrollAnimator()->currentPosition(); in moveThumb()
546 return m_scrollableArea->scrollAnimator()->shouldScrollbarParticipateInHitTesting(this); in shouldParticipateInHitTesting()
DScrollableArea.h109 ScrollAnimator* scrollAnimator() const;
/external/chromium_org/third_party/WebKit/Source/platform/mac/
DScrollAnimatorMac.mm93 - (id)initWithScrollAnimator:(WebCore::ScrollAnimatorMac*)scrollAnimator;
108 - (id)initWithScrollAnimator:(WebCore::ScrollAnimatorMac*)scrollAnimator
114 _animator = scrollAnimator;
267 _scrollableArea->scrollAnimator()->contentAreaWillPaint();
284 static_cast<ScrollAnimatorMac*>(_scrollableArea->scrollAnimator())->updateScrollerStyle();
419 - (ScrollAnimatorMac*)scrollAnimator
421 return static_cast<ScrollAnimatorMac*>(_scrollbar->scrollableArea()->scrollAnimator());
448 bool mustAnimate = [self scrollAnimator]->haveScrolledSincePageLoad();
450 if ([self scrollAnimator]->scrollbarPaintTimerIsActive() && !mustAnimate)
454 [self scrollAnimator]->startScrollbarPaintTimer();
[all …]
/external/chromium_org/third_party/WebKit/Source/web/
DWebPluginContainerImpl.cpp418 m_scrollbarGroup->scrollAnimator()->contentsResized(); in reportGeometry()
702 m_scrollbarGroup->scrollAnimator()->mouseMovedInContentArea(); in handleMouseEvent()
704 m_scrollbarGroup->scrollAnimator()->mouseEnteredContentArea(); in handleMouseEvent()
706 m_scrollbarGroup->scrollAnimator()->mouseExitedContentArea(); in handleMouseEvent()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrameView.cpp263 if (ScrollAnimator* scrollAnimator = existingScrollAnimator()) in prepareForDetach() local
264 scrollAnimator->cancelAnimations(); in prepareForDetach()
1705 if (ScrollAnimator* scrollAnimator = existingScrollAnimator()) in isRubberBandInProgress() local
1706 return scrollAnimator->isRubberBandInProgress(); in isRubberBandInProgress()
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
DScrollingCoordinator.cpp926 frameView->scrollAnimator()->handleWheelEventPhase(phase); in handleWheelEventPhase()
/external/chromium_org/third_party/WebKit/Source/core/page/
DEventHandler.cpp2051 if (ScrollAnimator* scrollAnimator = view->existingScrollAnimator()) in handleGestureShowPress() local
2052 scrollAnimator->cancelAnimations(); in handleGestureShowPress()
2058 ScrollAnimator* animator = sa->scrollAnimator(); in handleGestureShowPress()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderLayerScrollableArea.cpp94scrollAnimator()->setCurrentPosition(FloatPoint(m_scrollOffset.width(), m_scrollOffset.height())); in RenderLayerScrollableArea()
/external/chromium_org/third_party/WebKit/Source/web/resources/
DcalendarPicker.js1423 ScrollView.prototype.scrollAnimator = function() { method in ScrollView