Home
last modified time | relevance | path

Searched refs:momentumPhase (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/ui/app_list/cocoa/
Dscroll_view_with_no_scrollbars.mm68 if (![event respondsToSelector:@selector(momentumPhase)])
71 BOOL scrollComplete = [event momentumPhase] == NSEventPhaseEnded ||
72 ([event momentumPhase] == NSEventPhaseNone &&
/external/chromium_org/third_party/WebKit/Source/platform/mac/
DScrollElasticityController.mm151 bool isMomentumScrollEvent = (wheelEvent.momentumPhase() != PlatformWheelEventPhaseNone);
153 if (wheelEvent.momentumPhase() == PlatformWheelEventPhaseEnded) {
195 PlatformWheelEventPhase momentumPhase = wheelEvent.momentumPhase();
198 …if (!m_momentumScrollInProgress && (momentumPhase == PlatformWheelEventPhaseBegan || momentumPhase
305 if (m_momentumScrollInProgress && momentumPhase == PlatformWheelEventPhaseEnded) {
/external/chromium_org/chrome/browser/renderer_host/
Dchrome_render_widget_host_view_mac_history_swiper_unit_test.mm136 NSEventPhase momentumPhase,
143 [[event stub] andReturnValue:OCMOCK_VALUE(momentumPhase)] momentumPhase];
152 NSEventPhase momentumPhase) {
153 return scrollWheelEventWithPhase(phase, momentumPhase, 0, 0);
Dchrome_render_widget_host_view_mac_history_swiper.mm487 // fact that `phase` and `momentumPhase` both return NSEventPhaseNone.
491 // `momentumPhase` does not. Unfortunately, the callbacks don't work
503 [theEvent momentumPhase] != NSEventPhaseChanged) {
514 if ([theEvent momentumPhase] != NSEventPhaseNone)
Dchrome_render_widget_host_view_mac_history_swiper_browsertest.mm157 andReturnValue:OCMOCK_VALUE(momentum_phase)] momentumPhase];
/external/chromium_org/third_party/WebKit/public/web/
DWebInputEvent.h370 Phase momentumPhase; variable
401 , momentumPhase(PhaseNone) in WebMouseWheelEvent()
/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformWheelEvent.h115 PlatformWheelEventPhase momentumPhase() const { return m_momentumPhase; } in momentumPhase() function
/external/chromium_org/content/common/input/
Dweb_input_event_traits.cc56 event.momentumPhase == event_to_coalesce.momentumPhase && in CanCoalesce()
/external/chromium_org/base/mac/
Dsdk_forward_declarations.h71 - (NSEventPhase)momentumPhase;
/external/chromium_org/third_party/WebKit/Source/web/
DWebInputEventFactoryMac.mm53 - (NSEventPhase)momentumPhase; method in LionSDKDeclarations
961 if (![event respondsToSelector:@selector(momentumPhase)])
964 NSEventPhase eventMomentumPhase = [event momentumPhase];
1113 result.momentumPhase = momentumPhaseForEvent(event);
DWebInputEventConversion.cpp170 m_momentumPhase = static_cast<PlatformWheelEventPhase>(e.momentumPhase); in PlatformWheelEventBuilder()
/external/chromium_org/content/shell/renderer/test_runner/
Devent_sender.cc1847 event.momentumPhase = WebMouseWheelEvent::PhaseBegan; in MouseMomentumBegin()
1855 event.momentumPhase = WebMouseWheelEvent::PhaseBegan; in MouseMomentumBegin2()
1863 event.momentumPhase = WebMouseWheelEvent::PhaseChanged; in MouseMomentumScrollBy()
1877 event.momentumPhase = WebMouseWheelEvent::PhaseEnded; in MouseMomentumEnd()