HomeSort by relevance Sort by last modified time
    Searched refs:clickCount (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/webkit/Source/WebKit/chromium/tests/
WebInputEventFactoryTestGtk.cpp 56 EXPECT_EQ(1, firstClickEvent.clickCount);
62 EXPECT_EQ(2, secondClickEvent.clickCount);
67 EXPECT_EQ(1, firstClickEvent.clickCount);
73 EXPECT_EQ(1, secondClickEvent.clickCount);
78 EXPECT_EQ(1, firstClickEvent.clickCount);
85 EXPECT_EQ(1, secondClickEvent.clickCount);
90 EXPECT_EQ(1, firstClickEvent.clickCount);
97 EXPECT_EQ(1, secondClickEvent.clickCount);
102 EXPECT_EQ(1, firstClickEvent.clickCount);
109 EXPECT_EQ(1, secondClickEvent.clickCount);
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
EventSendingController.h 36 int clickCount;
EventSendingController.mm 293 clickCount = 1;
296 clickCount++;
331 clickCount:clickCount
396 clickCount:clickCount
454 clickCount:(leftMouseButtonDown ? clickCount : 0)
517 clickCount:clickCount
    [all...]
  /external/webkit/Source/WebCore/platform/
PlatformMouseEvent.h 97 int clickCount, bool shift, bool ctrl, bool alt, bool meta, double timestamp)
102 , m_clickCount(clickCount)
124 int clickCount() const { return m_clickCount; }
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/WebCore/platform/qt/
PlatformMouseEventQt.cpp 38 PlatformMouseEvent::PlatformMouseEvent(QGraphicsSceneMouseEvent* event, int clickCount)
67 m_clickCount = clickCount;
75 PlatformMouseEvent::PlatformMouseEvent(QInputEvent* event, int clickCount)
123 m_clickCount = clickCount;
  /external/webkit/Source/WebKit2/Shared/
WebMouseEvent.cpp 49 WebMouseEvent::WebMouseEvent(Type type, Button button, const IntPoint& position, const IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modifiers, double timestamp)
57 , m_clickCount(clickCount)
66 WebMouseEvent::WebMouseEvent(Type type, Button button, const IntPoint& position, const IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modifiers, double timestamp, bool didActivateWebView)
74 , m_clickCount(clickCount)
WebEvent.h 123 WebMouseEvent(Type, Button, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, double timestamp);
125 WebMouseEvent(Type, Button, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, double timestamp, bool didActivateWebView);
134 int32_t clickCount() const { return m_clickCount; }
  /external/webkit/Source/WebCore/platform/wx/
MouseEventWx.cpp 36 PlatformMouseEvent::PlatformMouseEvent(const wxMouseEvent& event, const wxPoint& globalPoint, int clickCount)
70 m_clickCount = clickCount;
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePagePrivate.h 52 WK_EXPORT void WKBundlePageSimulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time);
53 WK_EXPORT void WKBundlePageSimulateMouseUp(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time);
WKBundlePage.cpp 265 void WKBundlePageSimulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time)
267 toImpl(page)->simulateMouseDown(button, toIntPoint(position), clickCount, modifiers, time);
270 void WKBundlePageSimulateMouseUp(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time)
272 toImpl(page)->simulateMouseUp(button, toIntPoint(position), clickCount, modifiers, time);
  /external/webkit/Source/WebKit/chromium/src/mac/
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]
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
test_event_utils.h 41 // Return a mouse down and an up event with the given |clickCount| at
44 NSUInteger clickCount);
  /external/webkit/Source/WebCore/platform/mac/
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/Source/WebKit/mac/Plugins/
WebNetscapePluginEventHandlerCocoa.mm 106 int clickCount;
108 clickCount = 0;
110 clickCount = [nsEvent clickCount];
115 event.data.mouse.clickCount = clickCount;
  /external/webkit/Source/WebKit/chromium/public/
WebInputEvent.h 262 int clickCount;
273 , clickCount(0)
  /external/webkit/Tools/TestWebKitAPI/mac/
PlatformWebViewMac.mm 106 clickCount:0
119 clickCount:0
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPopupMenuProxyMac.mm 156 clickCount:[initiatingNSEvent clickCount]
167 clickCount:0
  /external/webkit/Source/WebCore/page/mac/
EventHandlerMac.mm 239 if ([currentNSEvent() clickCount] <= 1 && [view acceptsFirstResponder] && [view needsPanelToBecomeKey])
540 int clickCount = [event clickCount];
541 if (clickCount > 0 && clickCount % 2 == 0)
580 clickCount:[initiatingEvent clickCount]
607 clickCount:0
  /external/webkit/Source/WebKit/mac/WebView/
WebViewEventHandling.mm 182 eventNumber:0 clickCount:0 pressure:0];
204 eventNumber:0 clickCount:0 pressure:0];
  /external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp 72 static inline int clickCount(WebEvent::Type type, WebMouseEvent::Button button, const POINT& position, double timeStampSeconds)
392 int clickCount = WebKit::clickCount(type, button, position, timestamp);
395 return WebMouseEvent(type, button, position, globalPosition, 0, 0, 0, clickCount, modifiers, timestamp, didActivateWebView);
  /external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp 105 int clickCount = eventClickCount;
109 return WebMouseEvent(type, button, event->pos().toPoint(), event->screenPos(), deltaX, deltaY, 0.0f, clickCount, modifiers, timestamp);
  /external/webkit/Source/WebKit/chromium/src/
WebInputEventConversion.cpp 65 m_clickCount = e.clickCount;
296 clickCount = event.detail();
  /external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp 101 static int clickCount = 0;
144 e->clickCount = clickCount;
320 clickCount = 0;
369 ++clickCount;
371 clickCount = 1;
    [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
EventSender.cpp 66 static int clickCount;
261 clickCount = 1;
263 clickCount++;
329 if (clickCount == 2)
331 else if (clickCount == 3)
    [all...]
  /external/webkit/Source/WebKit/wx/
WebView.cpp 766 int clickCount = event.ButtonDClick() ? 2 : 1;
768 if (clickCount == 1 && m_impl->tripleClickTimer.IsRunning()) {
772 clickCount = 3;
774 } else if (clickCount == 2) {
779 WebCore::PlatformMouseEvent wkEvent(event, globalPoint, clickCount);

Completed in 1630 milliseconds

1 2 3