/external/webkit/Source/WebKit/chromium/tests/ |
D | WebInputEventFactoryTestGtk.cpp | 114 GdkEventButton mouseDown; in TEST() local 115 memset(&mouseDown, 0, sizeof(mouseDown)); in TEST() 116 mouseDown.type = GDK_BUTTON_PRESS; in TEST() 117 mouseDown.window = static_cast<GdkWindow*>(GINT_TO_POINTER(1)); in TEST() 118 mouseDown.x = mouseDown.y = mouseDown.x_root = mouseDown.y_root = 100; in TEST() 119 mouseDown.time = 0; in TEST() 120 mouseDown.button = 1; in TEST() 123 WebInputEventFactory::mouseEvent(&mouseDown); in TEST() 125 mouseDown.time += 10000; in TEST() 126 GdkEventButton mouseUp = mouseDown; in TEST() [all …]
|
/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/notifications/ |
D | balloon_view.mm | 80 // reorder here (shouldDelayWindowOrderingForEvent is called during mouseDown) 82 // mouseDown handler of this view. 87 - (void)mouseDown:(NSEvent*)event { 90 [super mouseDown:event];
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | hover_button.mm | 39 - (void)mouseDown:(NSEvent*)theEvent { 43 // it can be freed while |super mouseDown:| is in it's loop, and the 48 [super mouseDown:theEvent]; 49 // We need to check the image state after the mouseDown event loop finishes.
|
D | draggable_button_unittest.mm | 95 [button mouseDown:downEvent]; 102 [button mouseDown:downEvent]; 125 [button mouseDown:downEvent]; 134 [button mouseDown:downEvent];
|
D | draggable_button.mm | 155 // Override if you want to do any extra work on mouseUp, after a mouseDown 190 - (void)mouseDown:(NSEvent*)theEvent { 206 [super mouseDown:theEvent]; 214 [super mouseDown:theEvent];
|
D | profile_menu_button.h | 34 - (void) mouseDown:(NSEvent*)event
|
D | tabpose_window_unittest.mm | 55 [window mouseDown:nil]; 116 [window mouseDown:nil];
|
D | profile_menu_button.mm | 338 - (void) mouseDown:(NSEvent*)event 341 [super mouseDown:event]; 372 - (void)mouseDown:(NSEvent*)event { 373 [self mouseDown:event
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
D | WKBundlePageOverlay.cpp | 87 if (!m_client.mouseDown) in mouseEvent() 90 …return m_client.mouseDown(toAPI(pageOverlay), toAPI(event.position()), toAPI(event.button()), m_cl… in mouseEvent()
|
D | WKBundlePageOverlay.h | 58 WKBundlePageOverlayMouseDownCallback mouseDown; member
|
/external/chromium/chrome/browser/ui/cocoa/toolbar/ |
D | toolbar_button.mm | 15 - (void)mouseDown:(NSEvent*)theEvent { 17 [super mouseDown:theEvent];
|
D | reload_button_unittest.mm | 68 [button_ mouseDown:click_one.first]; 70 [button_ mouseDown:click_two.first]; 236 [button_ mouseDown:click.first]; 253 [button_ mouseDown:click.first];
|
/external/chromium/chrome/browser/ui/cocoa/download/ |
D | download_item_button.mm | 27 - (void)mouseDown:(NSEvent*)event { 33 [super mouseDown:event];
|
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
D | autocomplete_text_field.mm | 59 // editor is installed, it will get -mouseDown: events and handle 80 - (void)mouseDown:(NSEvent*)theEvent { 112 // NSTextField -mouseDown: because it does the right thing. The 119 [super mouseDown:theEvent]; 127 // NSText subview, which will receive the -mouseDown: in that 143 if ([cell mouseDown:theEvent inRect:bounds ofView:self]) { 167 [editor mouseDown:theEvent]; 298 // handled by a decoration or context menu (|-mouseDown:| will still
|
D | autocomplete_text_field_unittest.mm | 373 [field_ mouseDown:downEvent]; 408 [field_ mouseDown:downEvent]; 427 [field_ mouseDown:downEvent]; 446 [field_ mouseDown:downEvent]; 460 [field_ mouseDown:downEvent]; 489 [field_ mouseDown:downEvent]; 491 [field_ mouseDown:downEvent2]; 514 [field_ mouseDown:downEvent]; 516 [field_ mouseDown:downEvent2]; 518 [field_ mouseDown:downEvent3]; [all …]
|
D | autocomplete_text_field_cell.h | 62 - (BOOL)mouseDown:(NSEvent*)theEvent
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
D | EventSendingController.h | 46 void mouseDown(int button, JSValueRef modifierArray);
|
/external/webkit/Source/WebKit/mac/Plugins/ |
D | WebNetscapePluginEventHandlerCocoa.h | 40 virtual void mouseDown(NSEvent*);
|
D | WebNetscapePluginEventHandler.h | 45 virtual void mouseDown(NSEvent*) = 0;
|
D | WebNetscapePluginEventHandlerCarbon.h | 42 virtual void mouseDown(NSEvent*);
|
D | WebNetscapePluginEventHandlerCarbon.mm | 136 void WebNetscapePluginEventHandlerCarbon::mouseDown(NSEvent* theEvent) function 141 event.what = ::mouseDown; 146 …LOG(PluginEvents, "NPP_HandleEvent(mouseDown): %d pt.v=%d, pt.h=%d", acceptedEvent, event.where.v,… 417 …if (event->what == ::mouseDown || event->what == ::keyDown || event->what == ::mouseUp || event->w…
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | EventSendingController.mm | 64 NSMutableArray *savedMouseEvents; // mouse events sent between mouseDown and mouseUp are stored her… 130 || aSelector == @selector(mouseDown:withModifiers:) 166 if (aSelector == @selector(mouseDown:withModifiers:)) 167 return @"mouseDown"; 318 - (void)mouseDown:(int)buttonNumber withModifiers:(WebScriptObject*)modifiers 336 [subView mouseDown:event]; 342 - (void)mouseDown:(int)buttonNumber 344 [self mouseDown:buttonNumber withModifiers:nil]; 543 [self performSelector:@selector(mouseDown:) withObject:nil afterDelay:0];
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebViewEventHandling.mm | 75 - (void)mouseDown:(NSEvent *)event 82 [super mouseDown:event]; 117 frame->eventHandler()->mouseDown(event);
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | EventSenderQt.h | 58 void mouseDown(int button = 0);
|