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
95 if (!m_animators->scrollAnimator)
96 m_animators->scrollAnimator = ScrollAnimator::create(const_cast<ScrollableArea*>(this));
98 return m_animators->scrollAnimator.get();
159 return scrollAnimator()->scroll(orientation, granularity, step, delta);
165 scrollAnimator()->scrollToOffsetWithoutAnimation(offset);
171 scrollToOffsetWithoutAnimation(FloatPoint(offset, scrollAnimator()->currentPosition().y()));
173 scrollToOffsetWithoutAnimation(FloatPoint(scrollAnimator()->currentPosition().x(), offset))
    [all...]
ScrollableArea.h 30 #include "platform/scroll/ScrollAnimator.h"
42 class ScrollAnimator;
114 // This getter will create a ScrollAnimator if it doesn't already exist.
115 ScrollAnimator* scrollAnimator() const;
117 // This getter will return null if the ScrollAnimator hasn't been created yet.
118 ScrollAnimator* existingScrollAnimator() const { return m_animators ? m_animators->scrollAnimator.get() : 0; }
253 // NOTE: Only called from the ScrollAnimator.
254 friend class ScrollAnimator;
    [all...]
Scrollbar.cpp 33 #include "platform/scroll/ScrollAnimator.h"
280 FloatPoint currentPosition = m_scrollableArea->scrollAnimator()->currentPosition();
534 return m_scrollableArea->scrollAnimator()->shouldScrollbarParticipateInHitTesting(this);
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 94 - (id)initWithScrollAnimator:(blink::ScrollAnimatorMac*)scrollAnimator;
109 - (id)initWithScrollAnimator:(blink::ScrollAnimatorMac*)scrollAnimator
115 _animator = scrollAnimator;
268 _scrollableArea->scrollAnimator()->contentAreaWillPaint();
285 static_cast<ScrollAnimatorMac*>(_scrollableArea->scrollAnimator())->updateScrollerStyle();
492 - (ScrollAnimatorMac*)scrollAnimator
494 return static_cast<ScrollAnimatorMac*>(_scrollbar->scrollableArea()->scrollAnimator());
521 bool mustAnimate = [self scrollAnimator]->haveScrolledSincePageLoad();
523 if ([self scrollAnimator]->scrollbarPaintTimerIsActive() && !mustAnimate)
527 [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 70 #include "platform/scroll/ScrollAnimator.h"
407 m_scrollbarGroup->scrollAnimator()->contentsResized();
753 m_scrollbarGroup->scrollAnimator()->mouseMovedInContentArea();
755 m_scrollbarGroup->scrollAnimator()->mouseEnteredContentArea();
757 m_scrollbarGroup->scrollAnimator()->mouseExitedContentArea();
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 83 #include "platform/scroll/ScrollAnimator.h"
240 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
241 scrollAnimator->cancelAnimations();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 55 #include "platform/scroll/ScrollAnimator.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.cpp 72 #include "platform/scroll/ScrollAnimator.h"
100 scrollAnimator()->setCurrentPosition(FloatPoint(m_scrollOffset.width(), m_scrollOffset.height()));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 97 #include "platform/scroll/ScrollAnimator.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/resources/
calendarPicker.js     [all...]

Completed in 353 milliseconds