HomeSort by relevance Sort by last modified time
    Searched full:clickcount (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/webkit/LayoutTests/fast/dom/HTMLLabelElement/
click-label.html 4 var clickcount = 0;
18 if (clickcount < 1)
23 if (clickcount < 2)
30 clickcount++;
  /external/chromium/chrome/browser/ui/cocoa/
test_event_utils.mm 44 clickCount:1
55 NSUInteger clickCount) {
63 clickCount:clickCount
76 NSUInteger clickCount) {
80 [view window], clickCount);
82 [view window], clickCount);
test_event_utils.h 41 // Return a mouse down and an up event with the given |clickCount| at
44 NSUInteger clickCount);
floating_bar_backing_view.mm 46 if ([event clickCount] == 2 &&
  /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/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/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/chromium/chrome/browser/ui/cocoa/tabs/
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/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/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/chromium/chrome/browser/ui/cocoa/wrench_menu/
menu_tracked_root_view_unittest.mm 39 clickCount:1
  /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/Tools/TestWebKitAPI/mac/
PlatformWebViewMac.mm 106 clickCount:0
119 clickCount:0
  /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/WebKit2/UIProcess/mac/
WebPopupMenuProxyMac.mm 156 clickCount:[initiatingNSEvent clickCount]
167 clickCount:0
  /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/tab_contents/
render_view_context_menu_mac.mm 49 clickCount:1
  /external/chromium/chrome/browser/ui/cocoa/download/
download_util_mac.mm 57 clickCount:1
  /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/chromium/chrome/browser/ui/cocoa/tab_contents/
web_contents_drag_source.mm 87 clickCount:1

Completed in 451 milliseconds

1 2 3