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

  /external/webkit/Source/WebCore/platform/mac/
WheelEventMac.mm 41 if ([event momentumPhase] & NSEventPhaseBegan)
43 if ([event momentumPhase] & NSEventPhaseStationary)
45 if ([event momentumPhase] & NSEventPhaseChanged)
47 if ([event momentumPhase] & NSEventPhaseEnded)
49 if ([event momentumPhase] & NSEventPhaseCancelled)
ScrollAnimatorMac.mm 824 bool isMometumScrollEvent = (wheelEvent.momentumPhase() != PlatformWheelEventPhaseNone);
826 if (wheelEvent.momentumPhase() == PlatformWheelEventPhaseEnded)
935 PlatformWheelEventPhase phase = wheelEvent.momentumPhase();
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebWheelEvent.cpp 52 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Phase phase, Phase momentumPhase, bool hasPreciseScrollingDeltas, Modifiers modifiers, double timestamp)
60 , m_momentumPhase(momentumPhase)
WebEvent.h 180 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Phase phase, Phase momentumPhase,bool hasPreciseScrollingDeltas, Modifiers, double timestamp);
190 Phase momentumPhase() const { return static_cast<Phase>(m_momentumPhase); }
WebEventConversion.cpp 115 m_momentumPhase = static_cast<WebCore::PlatformWheelEventPhase>(webEvent.momentumPhase());
  /external/webkit/Source/WebKit/mac/WebView/
WebDynamicScrollBarsView.mm 519 NSEventPhase momentumPhase = [event momentumPhase];
520 BOOL isLatchingEvent = momentumPhase & NSEventPhaseBegan || momentumPhase & NSEventPhaseChanged;
522 int momentumPhase = WKGetNSEventMomentumPhase(event);
523 BOOL isLatchingEvent = momentumPhase == WKEventPhaseBegan || momentumPhase == WKEventPhaseChanged;
  /external/webkit/Source/WebKit2/Shared/mac/
WebEventFactory.mm 213 if ([event momentumPhase] & NSEventPhaseBegan)
215 if ([event momentumPhase] & NSEventPhaseStationary)
217 if ([event momentumPhase] & NSEventPhaseChanged)
219 if ([event momentumPhase] & NSEventPhaseEnded)
221 if ([event momentumPhase] & NSEventPhaseCancelled)
    [all...]
  /external/webkit/Source/WebCore/platform/
PlatformWheelEvent.h 157 PlatformWheelEventPhase momentumPhase() const { return m_momentumPhase; }
  /external/webkit/Source/WebCore/page/
EventHandler.cpp     [all...]

Completed in 65 milliseconds