/external/webkit/Source/WebKit/chromium/tests/ |
D | WebInputEventFactoryTestGtk.cpp | 56 EXPECT_EQ(1, firstClickEvent.clickCount); in TEST() 62 EXPECT_EQ(2, secondClickEvent.clickCount); in TEST() 67 EXPECT_EQ(1, firstClickEvent.clickCount); in TEST() 73 EXPECT_EQ(1, secondClickEvent.clickCount); in TEST() 78 EXPECT_EQ(1, firstClickEvent.clickCount); in TEST() 85 EXPECT_EQ(1, secondClickEvent.clickCount); in TEST() 90 EXPECT_EQ(1, firstClickEvent.clickCount); in TEST() 97 EXPECT_EQ(1, secondClickEvent.clickCount); in TEST() 102 EXPECT_EQ(1, firstClickEvent.clickCount); in TEST() 109 EXPECT_EQ(1, secondClickEvent.clickCount); in TEST() [all …]
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | test_event_utils.mm | 44 clickCount:1 55 NSUInteger clickCount) { 63 clickCount:clickCount 76 NSUInteger clickCount) { 80 [view window], clickCount); 82 [view window], clickCount);
|
D | test_event_utils.h | 44 NSUInteger clickCount);
|
/external/webkit/Source/WebCore/platform/ |
D | PlatformMouseEvent.h | 97 … int clickCount, bool shift, bool ctrl, bool alt, bool meta, double timestamp) in PlatformMouseEvent() argument 102 , m_clickCount(clickCount) in PlatformMouseEvent() 124 int clickCount() const { return m_clickCount; } in clickCount() function 152 … int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp, 158 PlatformMouseEvent(QInputEvent*, int clickCount); 159 PlatformMouseEvent(QGraphicsSceneMouseEvent*, int clickCount); 169 PlatformMouseEvent(const wxMouseEvent&, const wxPoint& globalPoint, int clickCount);
|
/external/webkit/Source/WebKit2/Shared/ |
D | WebMouseEvent.cpp | 49 …ntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modif… in WebMouseEvent() argument 57 , m_clickCount(clickCount) in WebMouseEvent() 66 …ntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modif… in WebMouseEvent() argument 74 , m_clickCount(clickCount) in WebMouseEvent()
|
D | WebEvent.h | 123 …ntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, doub… 125 …ntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, doub… 134 int32_t clickCount() const { return m_clickCount; } in clickCount() function
|
/external/webkit/Source/WebCore/platform/qt/ |
D | PlatformMouseEventQt.cpp | 38 PlatformMouseEvent::PlatformMouseEvent(QGraphicsSceneMouseEvent* event, int clickCount) in PlatformMouseEvent() argument 67 m_clickCount = clickCount; in PlatformMouseEvent() 75 PlatformMouseEvent::PlatformMouseEvent(QInputEvent* event, int clickCount) in PlatformMouseEvent() argument 123 m_clickCount = clickCount; in PlatformMouseEvent()
|
/external/webkit/Source/WebCore/platform/wx/ |
D | MouseEventWx.cpp | 36 …useEvent::PlatformMouseEvent(const wxMouseEvent& event, const wxPoint& globalPoint, int clickCount) in PlatformMouseEvent() argument 70 m_clickCount = clickCount; in PlatformMouseEvent()
|
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
D | tab_strip_view.mm | 149 NSInteger clickCount = [event clickCount]; 154 // (with clickCount == 2!). We thus check that we got a first click shortly 161 if (clickCount == 2 && (timestamp - lastMouseUp_) < 0.8) { 168 // If clickCount is 0, the drag threshold was passed. 169 lastMouseUp_ = (clickCount == 1) ? timestamp : -1000.0;
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
D | WKBundlePagePrivate.h | 52 …ulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifier… 53 …imulateMouseUp(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifier…
|
D | WKBundlePage.cpp | 265 …ulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifier… in WKBundlePageSimulateMouseDown() argument 267 toImpl(page)->simulateMouseDown(button, toIntPoint(position), clickCount, modifiers, time); in WKBundlePageSimulateMouseDown() 270 void WKBundlePageSimulateMouseUp(WKBundlePageRef page, int button, WKPoint position, int clickCount… in WKBundlePageSimulateMouseUp() argument 272 toImpl(page)->simulateMouseUp(button, toIntPoint(position), clickCount, modifiers, time); in WKBundlePageSimulateMouseUp()
|
/external/webkit/Source/WebKit/mac/Plugins/ |
D | WebNetscapePluginEventHandlerCocoa.mm | 106 int clickCount; 108 clickCount = 0; 110 clickCount = [nsEvent clickCount]; 115 event.data.mouse.clickCount = clickCount;
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebInputEvent.h | 262 int clickCount; variable 273 , clickCount(0) in WebInputEvent()
|
/external/webkit/Source/WebKit2/Shared/win/ |
D | WebEventFactory.cpp | 72 static inline int clickCount(WebEvent::Type type, WebMouseEvent::Button button, const POINT& positi… in clickCount() function 392 int clickCount = WebKit::clickCount(type, button, position, timestamp); in createWebMouseEvent() local 395 …return WebMouseEvent(type, button, position, globalPosition, 0, 0, 0, clickCount, modifiers, times… in createWebMouseEvent()
|
/external/webkit/Source/WebKit/chromium/src/mac/ |
D | WebInputEventFactory.mm | 642 result.clickCount = 0; 651 result.clickCount = [event clickCount]; 656 result.clickCount = [event clickCount]; 661 result.clickCount = [event clickCount]; 666 result.clickCount = [event clickCount]; 671 result.clickCount = [event clickCount]; 676 result.clickCount = [event clickCount];
|
/external/webkit/Source/WebCore/platform/mac/ |
D | PlatformMouseEventMac.mm | 65 return [event clickCount]; 162 … int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp, 168 , m_clickCount(clickCount)
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | EventSendingController.h | 36 int clickCount; variable
|
D | EventSendingController.mm | 293 clickCount = 1; 296 clickCount++; 331 clickCount:clickCount 396 clickCount:clickCount 454 clickCount:(leftMouseButtonDown ? clickCount : 0) 517 clickCount:clickCount
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
D | WebPopupMenuProxyMac.mm | 156 clickCount:[initiatingNSEvent clickCount] 167 clickCount:0
|
/external/webkit/Tools/DumpRenderTree/gtk/ |
D | EventSender.cpp | 66 static int clickCount; variable 261 clickCount = 1; in updateClickCount() 263 clickCount++; in updateClickCount() 329 if (clickCount == 2) in mouseDownCallback() 331 else if (clickCount == 3) in mouseDownCallback() 846 clickCount = 0; in makeEventSender()
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | EventSender.cpp | 101 static int clickCount = 0; variable 144 e->clickCount = clickCount; in initMouseEvent() 320 clickCount = 0; in reset() 369 ++clickCount; in updateClickCountForButton() 371 clickCount = 1; in updateClickCountForButton()
|
/external/webkit/Tools/TestWebKitAPI/mac/ |
D | PlatformWebViewMac.mm | 106 clickCount:0 119 clickCount:0
|
/external/webkit/Source/WebKit2/Shared/qt/ |
D | WebEventFactoryQt.cpp | 105 int clickCount = eventClickCount; in createWebMouseEvent() local 109 …ton, event->pos().toPoint(), event->screenPos(), deltaX, deltaY, 0.0f, clickCount, modifiers, time… in createWebMouseEvent()
|
/external/webkit/Source/WebCore/page/mac/ |
D | EventHandlerMac.mm | 239 …if ([currentNSEvent() clickCount] <= 1 && [view acceptsFirstResponder] && [view needsPanelToBecome… 540 int clickCount = [event clickCount]; 541 if (clickCount > 0 && clickCount % 2 == 0) 580 clickCount:[initiatingEvent clickCount] 607 clickCount:0
|
/external/webkit/Source/WebKit/wx/ |
D | WebView.cpp | 766 int clickCount = event.ButtonDClick() ? 2 : 1; in OnMouseEvents() local 768 if (clickCount == 1 && m_impl->tripleClickTimer.IsRunning()) { in OnMouseEvents() 772 clickCount = 3; in OnMouseEvents() 774 } else if (clickCount == 2) { in OnMouseEvents() 779 WebCore::PlatformMouseEvent wkEvent(event, globalPoint, clickCount); in OnMouseEvents()
|