Searched defs:clickCount (Results 1 - 18 of 18) sorted by last modified time

/external/webkit/Source/WebKit/chromium/public/
H A DWebInputEvent.h262 int clickCount; member in class:WebKit::WebMouseEvent
273 , clickCount(0)
/external/webkit/Source/WebKit/wx/
H A DWebView.cpp766 int clickCount = event.ButtonDClick() ? 2 : 1; local
768 if (clickCount == 1 && m_impl->tripleClickTimer.IsRunning()) {
772 clickCount = 3;
774 } else if (clickCount == 2) {
779 WebCore::PlatformMouseEvent wkEvent(event, globalPoint, clickCount);
/external/webkit/Source/WebKit2/Shared/
H A DWebEvent.h123 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; } function in class:WebKit::WebMouseEvent
H A DWebMouseEvent.cpp49 WebMouseEvent::WebMouseEvent(Type type, Button button, const IntPoint& position, const IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modifiers, double timestamp) argument
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) argument
74 , m_clickCount(clickCount)
/external/webkit/Source/WebKit2/Shared/qt/
H A DWebEventFactoryQt.cpp105 int clickCount = eventClickCount; local
109 return WebMouseEvent(type, button, event->pos().toPoint(), event->screenPos(), deltaX, deltaY, 0.0f, clickCount, modifiers, timestamp);
/external/webkit/Source/WebKit2/Shared/win/
H A DWebEventFactory.cpp72 static inline int clickCount(WebEvent::Type type, WebMouseEvent::Button button, const POINT& position, double timeStampSeconds) function in namespace:WebKit
392 int clickCount = WebKit::clickCount(type, button, position, timestamp); local
395 return WebMouseEvent(type, button, position, globalPosition, 0, 0, 0, clickCount, modifiers, timestamp, didActivateWebView);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.cpp265 void WKBundlePageSimulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time) argument
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) argument
272 toImpl(page)->simulateMouseUp(button, toIntPoint(position), clickCount, modifiers, time);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp2229 void WebPage::simulateMouseDown(int button, WebCore::IntPoint position, int clickCount, WKEventModifiers modifiers, double time) argument
2231 mouseEvent(WebMouseEvent(WebMouseEvent::MouseDown, static_cast<WebMouseEvent::Button>(button), position, position, 0, 0, 0, clickCount, static_cast<WebMouseEvent::Modifiers>(modifiers), time));
2234 void WebPage::simulateMouseUp(int button, WebCore::IntPoint position, int clickCount, WKEventModifiers modifiers, double time) argument
2236 mouseEvent(WebMouseEvent(WebMouseEvent::MouseUp, static_cast<WebMouseEvent::Button>(button), position, position, 0, 0, 0, clickCount, static_cast<WebMouseEvent::Modifiers>(modifiers), time));
/external/webkit/Tools/DumpRenderTree/chromium/
H A DEventSender.cpp101 static int clickCount = 0; variable
144 e->clickCount = clickCount;
320 clickCount = 0;
369 ++clickCount;
371 clickCount = 1;
/external/webkit/Tools/DumpRenderTree/gtk/
H A DEventSender.cpp66 static int clickCount; variable
261 clickCount = 1;
263 clickCount++;
329 if (clickCount == 2)
331 else if (clickCount == 3)
846 clickCount = 0;
/external/webkit/Tools/DumpRenderTree/mac/
H A DEventSendingController.h36 int clickCount; variable
/external/webkit/Source/WebCore/bridge/
H A Dnpapi.h662 int32_t clickCount; member in struct:_NPCocoaEvent::__anon14528::__anon14529
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp299 if (result.event().clickCount() == 2 && m_frame->editor()->isSelectTrailingWhitespaceEnabled())
456 bool singleClick = event.event().clickCount() <= 1;
501 if (event.event().clickCount() == 2)
503 else if (event.event().clickCount() >= 3)
595 if (event.button() != LeftButton || event.clickCount() != 1)
1424 m_clickCount = mouseEvent.clickCount();
1507 m_clickCount = mouseEvent.clickCount();
2025 bool EventHandler::dispatchMouseEvent(const AtomicString& eventType, Node* targetNode, bool /*cancelable*/, int clickCount, const PlatformMouseEvent& mouseEvent, bool setUnder) argument
2035 swallowEvent = m_nodeUnderMouse->dispatchMouseEvent(mouseEvent, eventType, clickCount);
/external/webkit/Source/WebCore/platform/
H A DPlatformMouseEvent.h97 int clickCount, bool shift, bool ctrl, bool alt, bool meta, double timestamp)
102 , m_clickCount(clickCount)
124 int clickCount() const { return m_clickCount; } function in class:WebCore::PlatformMouseEvent
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);
96 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, MouseEventType eventType, int clickCount, bool shift, bool ctrl, bool alt, bool meta, double timestamp) argument
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformMouseEventQt.cpp38 PlatformMouseEvent::PlatformMouseEvent(QGraphicsSceneMouseEvent* event, int clickCount) argument
67 m_clickCount = clickCount;
75 PlatformMouseEvent::PlatformMouseEvent(QInputEvent* event, int clickCount) argument
123 m_clickCount = clickCount;
/external/webkit/Source/WebCore/platform/wx/
H A DMouseEventWx.cpp36 PlatformMouseEvent::PlatformMouseEvent(const wxMouseEvent& event, const wxPoint& globalPoint, int clickCount) argument
70 m_clickCount = clickCount;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1187 milliseconds