Home
last modified time | relevance | path

Searched refs:mouseUp (Results 1 – 25 of 86) sorted by relevance

1234

/external/webkit/Source/WebKit/chromium/tests/
DWebInputEventFactoryTestGtk.cpp126 GdkEventButton mouseUp = mouseDown; in TEST() local
127 mouseUp.type = GDK_BUTTON_RELEASE; in TEST()
137 mouseUp.time = mouseDown.time + 50; in TEST()
138 mouseUpEvent = WebInputEventFactory::mouseEvent(&mouseUp); in TEST()
156 mouseUp.time = mouseDown.time + 50; in TEST()
157 mouseUpEvent = WebInputEventFactory::mouseEvent(&mouseUp); in TEST()
170 mouseUp.time = mouseMove.time + 50; in TEST()
171 mouseUpEvent = WebInputEventFactory::mouseEvent(&mouseUp); in TEST()
/external/webkit/LayoutTests/platform/android/
Dtest_expectations.txt123 fast/dom/Window/window-xy-properties.html FAIL // requires eventSender.mouseDown(),mouseUp()
127 fast/events/anchor-image-scrolled-x-y.html FAIL // requires eventSender.mouseDown(),mouseUp()
129 fast/events/capture-on-target.html FAIL // requires eventSender.mouseDown(),mouseUp()
130 fast/events/dblclick-addEventListener.html FAIL // requires eventSender.mouseDown(),mouseUp()
131 fast/events/drag-in-frames.html FAIL // requires eventSender.mouseDown(),mouseUp()
132 fast/events/drag-outside-window.html FAIL // requires eventSender.mouseDown(),mouseUp()
133 fast/events/event-view-toString.html FAIL // requires eventSender.mouseDown(),mouseUp()
134 fast/events/frame-click-focus.html FAIL // requires eventSender.mouseDown(),mouseUp()
137 fast/events/input-image-scrolled-x-y.html FAIL // requires eventSender.mouseDown(),mouseUp()
138 fast/events/mouseclick-target-and-positioning.html FAIL // requires eventSender.mouseDown(),mouseUp
[all …]
/external/chromium/chrome/browser/ui/cocoa/
Ddraggable_button.mm75 NSEvent* mouseUp = nil;
103 mouseUp = nextEvent;
112 if (mouseUp != nil) {
113 [NSApp postEvent:mouseUp atStart:YES];
118 if (firstEvent != mouseUp && firstEvent != dragEvent) {
133 - (void)mouseUp:(NSEvent*)theEvent {
140 [super mouseUp:theEvent];
144 // There are non-drag cases where a mouseUp: may happen
155 // Override if you want to do any extra work on mouseUp, after a mouseDown
Dfloating_bar_backing_view.mm43 - (void)mouseUp:(NSEvent*)event {
/external/webkit/Source/WebKit/mac/Misc/
DWebNSViewExtras.m74 NSEvent *nextEvent, *firstEvent, *dragEvent, *mouseUp;
84 mouseUp = nil;
110 mouseUp = nextEvent;
118 if (mouseUp != nil) {
119 [NSApp postEvent:mouseUp atStart:YES];
124 if (firstEvent != mouseUp && firstEvent != dragEvent) {
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
DWKBundlePageOverlay.cpp93 if (!m_client.mouseUp) in mouseEvent()
96 …return m_client.mouseUp(toAPI(pageOverlay), toAPI(event.position()), toAPI(event.button()), m_clie… in mouseEvent()
DWKBundlePageOverlay.h59 WKBundlePageOverlayMouseUpCallback mouseUp; member
/external/chromium/chrome/browser/ui/cocoa/toolbar/
Dtoolbar_button.mm25 - (void)mouseUp:(NSEvent*)theEvent {
27 [super mouseUp:theEvent];
/external/webkit/Tools/DumpRenderTree/mac/
DEventSendingController.mm64 NSMutableArray *savedMouseEvents; // mouse events sent between mouseDown and mouseUp are stored her…
132 || aSelector == @selector(mouseUp:withModifiers:)
168 if (aSelector == @selector(mouseUp:withModifiers:))
169 return @"mouseUp";
372 - (void)mouseUp:(int)buttonNumber withModifiers:(WebScriptObject*)modifiers
375 …ure:[EventSendingController instanceMethodSignatureForSelector:@selector(mouseUp:withModifiers:)]];
377 [invocation setSelector:@selector(mouseUp:withModifiers:)];
405 [targetView mouseUp:event];
427 - (void)mouseUp:(int)buttonNumber
429 [self mouseUp:buttonNumber withModifiers:nil];
[all …]
/external/webkit/Source/WebCore/rendering/
DHitTestRequest.h48 bool mouseUp() const { return m_requestType & MouseUp; } in mouseUp() function
/external/chromium/chrome/browser/ui/cocoa/wrench_menu/
Dmenu_tracked_root_view.mm11 - (void)mouseUp:(NSEvent*)theEvent {
Dmenu_tracked_button.mm70 - (void)mouseUp:(NSEvent*)theEvent {
73 return [super mouseUp:theEvent];
Dmenu_tracked_root_view_unittest.mm41 [view_ mouseUp:event];
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
DEventSendingController.h47 void mouseUp(int button, JSValueRef modifierArray);
/external/webkit/Source/WebCore/page/mac/
DEventHandlerMac.mm190 // When they finish, currentEvent is the mouseUp that they exited on. We need to update
191 // the WebCore state with this mouseUp, which we never saw. This method lets us detect
270 // When they finish, currentEvent is the mouseUp that they exited on. We need to update
271 // the EventHandler state with this mouseUp, which we never saw.
272 // If this event isn't a mouseUp, we assume that the mouseUp will be coming later. There
273 // is a hole here if the widget consumes both the mouseUp and subsequent events.
349 [view mouseUp:currentNSEvent()];
523 void EventHandler::mouseUp(NSEvent *event)
/external/webkit/Source/WebKit/mac/Plugins/
DWebNetscapePluginEventHandler.h50 virtual void mouseUp(NSEvent*) = 0;
DWebNetscapePluginEventHandlerCocoa.h45 virtual void mouseUp(NSEvent*);
DWebNetscapePluginEventHandlerCarbon.h47 virtual void mouseUp(NSEvent*);
DWebNetscapePluginEventHandlerCarbon.mm149 void WebNetscapePluginEventHandlerCarbon::mouseUp(NSEvent* theEvent) function
154 event.what = ::mouseUp;
159 …LOG(PluginEvents, "NPP_HandleEvent(mouseUp): %d pt.v=%d, pt.h=%d", acceptedEvent, event.where.v, e…
417 …if (event->what == ::mouseDown || event->what == ::keyDown || event->what == ::mouseUp || event->w…
/external/chromium/chrome/browser/ui/cocoa/tabs/
Dtab_strip_view.mm142 - (void)mouseUp:(NSEvent*)event {
145 [super mouseUp:event];
165 [super mouseUp:event];
/external/chromium/chrome/browser/ui/cocoa/extensions/
Dbrowser_actions_container_view.mm88 // the |-mouseUp:| message is received.
96 - (void)mouseUp:(NSEvent*)theEvent {
Dbrowser_action_button.mm183 - (void)mouseUp:(NSEvent*)theEvent {
185 // There are non-drag cases where a mouseUp: may happen
198 [super mouseUp:theEvent];
/external/webkit/Source/WebKit/mac/WebView/
DWebViewEventHandling.mm124 - (void)mouseUp:(NSEvent *)event
131 [super mouseUp:event];
150 frame->eventHandler()->mouseUp(event);
/external/webkit/Tools/DumpRenderTree/qt/
DEventSenderQt.h59 void mouseUp(int button = 0);
/external/webkit/Tools/DumpRenderTree/chromium/
DEventSender.h67 void mouseUp(const CppArgumentList&, CppVariant*);

1234