Searched refs:momentumPhase (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/platform/mac/
H A DWheelEventMac.mm41 if ([event momentumPhase] & NSEventPhaseBegan)
43 if ([event momentumPhase] & NSEventPhaseStationary)
45 if ([event momentumPhase] & NSEventPhaseChanged)
47 if ([event momentumPhase] & NSEventPhaseEnded)
49 if ([event momentumPhase] & NSEventPhaseCancelled)
H A DScrollAnimatorMac.mm824 bool isMometumScrollEvent = (wheelEvent.momentumPhase() != PlatformWheelEventPhaseNone);
826 if (wheelEvent.momentumPhase() == PlatformWheelEventPhaseEnded)
935 PlatformWheelEventPhase phase = wheelEvent.momentumPhase();
/external/webkit/Source/WebKit2/Shared/
H A DWebWheelEvent.cpp52 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) argument
60 , m_momentumPhase(momentumPhase)
H A DWebEvent.h180 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); } function in class:WebKit::WebWheelEvent
H A DWebEventConversion.cpp115 m_momentumPhase = static_cast<WebCore::PlatformWheelEventPhase>(webEvent.momentumPhase());
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDynamicScrollBarsView.mm519 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/
H A DWebEventFactory.mm213 if ([event momentumPhase] & NSEventPhaseBegan)
215 if ([event momentumPhase] & NSEventPhaseStationary)
217 if ([event momentumPhase] & NSEventPhaseChanged)
219 if ([event momentumPhase] & NSEventPhaseEnded)
221 if ([event momentumPhase] & NSEventPhaseCancelled)
1091 WebWheelEvent::Phase momentumPhase = momentumPhaseForEvent(event);
1096 return WebWheelEvent(WebEvent::Wheel, IntPoint(position), IntPoint(globalPosition), FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, phase, momentumPhase, hasPreciseScrollingDeltas, modifiers, timestamp);
/external/webkit/Source/WebCore/platform/
H A DPlatformWheelEvent.h157 PlatformWheelEventPhase momentumPhase() const { return m_momentumPhase; } function in class:WebCore::PlatformWheelEvent
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp2119 m_useLatchedWheelEventNode = e.momentumPhase() == PlatformWheelEventPhaseBegan || e.momentumPhase() == PlatformWheelEventPhaseChanged;

Completed in 59 milliseconds