HomeSort by relevance Sort by last modified time
    Searched refs:scrollAnimator (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.cpp 90 ScrollAnimator* ScrollableArea::scrollAnimator() const
93 m_scrollAnimator = ScrollAnimator::create(const_cast<ScrollableArea*>(this));
143 return scrollAnimator()->scroll(orientation, granularity, step, delta);
148 scrollAnimator()->scrollToOffsetWithoutAnimation(offset);
154 scrollToOffsetWithoutAnimation(FloatPoint(offset, scrollAnimator()->currentPosition().y()));
156 scrollToOffsetWithoutAnimation(FloatPoint(scrollAnimator()->currentPosition().x(), offset));
162 scrollAnimator()->setCurrentPosition(position);
197 scrollAnimator()->notifyContentAreaScrolled(scrollPosition() - oldPosition);
220 return scrollAnimator()->handleWheelEvent(wheelEvent)
    [all...]
ScrollableArea.h 30 #include "platform/scroll/ScrollAnimator.h"
42 class ScrollAnimator;
108 // This getter will create a ScrollAnimator if it doesn't already exist.
109 ScrollAnimator* scrollAnimator() const;
111 // This getter will return null if the ScrollAnimator hasn't been created yet.
112 ScrollAnimator* existingScrollAnimator() const { return m_scrollAnimator.get(); }
246 // NOTE: Only called from the ScrollAnimator.
247 friend class ScrollAnimator;
259 mutable OwnPtr<ScrollAnimator> m_scrollAnimator
    [all...]
Scrollbar.cpp 33 #include "platform/scroll/ScrollAnimator.h"
292 FloatPoint currentPosition = m_scrollableArea->scrollAnimator()->currentPosition();
546 return m_scrollableArea->scrollAnimator()->shouldScrollbarParticipateInHitTesting(this);
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 93 - (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...]
  /packages/apps/Camera2/src/com/android/camera/ui/
ModeTransitionView.java 343 ObjectAnimator scrollAnimator = ObjectAnimator.ofFloat(this, "scrollDistance",
345 scrollAnimator.addListener(new Animator.AnimatorListener() {
375 scrollAnimator.setInterpolator(Gusterpolator.INSTANCE);
376 scrollAnimator.start();
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 75 #include "platform/scroll/ScrollAnimator.h"
418 m_scrollbarGroup->scrollAnimator()->contentsResized();
702 m_scrollbarGroup->scrollAnimator()->mouseMovedInContentArea();
704 m_scrollbarGroup->scrollAnimator()->mouseEnteredContentArea();
706 m_scrollbarGroup->scrollAnimator()->mouseExitedContentArea();
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 80 #include "platform/scroll/ScrollAnimator.h"
263 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
264 scrollAnimator->cancelAnimations();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 54 #include "platform/scroll/ScrollAnimator.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.cpp 69 #include "platform/scroll/ScrollAnimator.h"
94 scrollAnimator()->setCurrentPosition(FloatPoint(m_scrollOffset.width(), m_scrollOffset.height()));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 96 #include "platform/scroll/ScrollAnimator.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/resources/
calendarPicker.js     [all...]

Completed in 190 milliseconds