/external/webkit/Source/WebKit/chromium/tests/ |
D | WebInputEventFactoryTestGtk.cpp | 126 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/ |
D | test_expectations.txt | 123 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/ |
D | draggable_button.mm | 75 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
|
D | floating_bar_backing_view.mm | 43 - (void)mouseUp:(NSEvent*)event {
|
/external/webkit/Source/WebKit/mac/Misc/ |
D | WebNSViewExtras.m | 74 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/ |
D | WKBundlePageOverlay.cpp | 93 if (!m_client.mouseUp) in mouseEvent() 96 …return m_client.mouseUp(toAPI(pageOverlay), toAPI(event.position()), toAPI(event.button()), m_clie… in mouseEvent()
|
D | WKBundlePageOverlay.h | 59 WKBundlePageOverlayMouseUpCallback mouseUp; member
|
/external/chromium/chrome/browser/ui/cocoa/toolbar/ |
D | toolbar_button.mm | 25 - (void)mouseUp:(NSEvent*)theEvent { 27 [super mouseUp:theEvent];
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | EventSendingController.mm | 64 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/ |
D | HitTestRequest.h | 48 bool mouseUp() const { return m_requestType & MouseUp; } in mouseUp() function
|
/external/chromium/chrome/browser/ui/cocoa/wrench_menu/ |
D | menu_tracked_root_view.mm | 11 - (void)mouseUp:(NSEvent*)theEvent {
|
D | menu_tracked_button.mm | 70 - (void)mouseUp:(NSEvent*)theEvent { 73 return [super mouseUp:theEvent];
|
D | menu_tracked_root_view_unittest.mm | 41 [view_ mouseUp:event];
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
D | EventSendingController.h | 47 void mouseUp(int button, JSValueRef modifierArray);
|
/external/webkit/Source/WebCore/page/mac/ |
D | EventHandlerMac.mm | 190 // 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/ |
D | WebNetscapePluginEventHandler.h | 50 virtual void mouseUp(NSEvent*) = 0;
|
D | WebNetscapePluginEventHandlerCocoa.h | 45 virtual void mouseUp(NSEvent*);
|
D | WebNetscapePluginEventHandlerCarbon.h | 47 virtual void mouseUp(NSEvent*);
|
D | WebNetscapePluginEventHandlerCarbon.mm | 149 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/ |
D | tab_strip_view.mm | 142 - (void)mouseUp:(NSEvent*)event { 145 [super mouseUp:event]; 165 [super mouseUp:event];
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
D | browser_actions_container_view.mm | 88 // the |-mouseUp:| message is received. 96 - (void)mouseUp:(NSEvent*)theEvent {
|
D | browser_action_button.mm | 183 - (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/ |
D | WebViewEventHandling.mm | 124 - (void)mouseUp:(NSEvent *)event 131 [super mouseUp:event]; 150 frame->eventHandler()->mouseUp(event);
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | EventSenderQt.h | 59 void mouseUp(int button = 0);
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | EventSender.h | 67 void mouseUp(const CppArgumentList&, CppVariant*);
|