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

1 2 3

  /external/chromium/chrome/browser/tab_contents/
render_view_context_menu_mac.mm 37 // [NSApp currentEvent] will return a valid event.
38 NSEvent* currentEvent = [NSApp currentEvent];
41 NSTimeInterval eventTime = [currentEvent timestamp];
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
web_contents_drag_source.mm 73 NSEvent* currentEvent = [NSApp currentEvent];
76 // [NSApp currentEvent] will return a valid dragging event.
79 NSTimeInterval eventTime = [currentEvent timestamp];
web_drag_source.mm 241 NSEvent* currentEvent = [NSApp currentEvent];
244 // [NSApp currentEvent] will return a valid dragging event.
247 NSTimeInterval eventTime = [currentEvent timestamp];
  /external/webkit/Source/WebCore/bindings/js/
JSDOMGlobalObject.cpp 69 void JSDOMGlobalObject::setCurrentEvent(Event* currentEvent)
71 m_currentEvent = currentEvent;
74 Event* JSDOMGlobalObject::currentEvent() const
JSDOMGlobalObject.h 61 Event* currentEvent() const;
JSErrorHandler.cpp 82 Event* savedEvent = globalObject->currentEvent();
JSEventListener.cpp 112 Event* savedEvent = globalObject->currentEvent();
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.cpp 560 const WebEvent* currentEvent = WebPage::currentEvent();
561 if (!currentEvent)
566 if ((event->type() == eventNames().mousemoveEvent && currentEvent->type() == WebEvent::MouseMove)
567 || (event->type() == eventNames().mousedownEvent && currentEvent->type() == WebEvent::MouseDown)
568 || (event->type() == eventNames().mouseupEvent && currentEvent->type() == WebEvent::MouseUp)) {
570 if (currentEvent->type() == WebEvent::MouseDown)
573 didHandleEvent = m_plugin->handleMouseEvent(static_cast<const WebMouseEvent&>(*currentEvent));
574 } else if (event->type() == eventNames().mousewheelEvent && currentEvent->type() == WebEvent::Wheel) {
576 didHandleEvent = m_plugin->handleWheelEvent(static_cast<const WebWheelEvent&>(*currentEvent));
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DragClientGtk.cpp 107 GOwnPtr<GdkEvent> currentEvent(gtk_get_current_event());
109 GdkDragContext* context = gtk_drag_begin(GTK_WIDGET(m_webView), targetList.get(), dragOperationToGdkDragActions(clipboard->sourceOperation()), 1, currentEvent.get());
  /external/chromium/chrome/browser/ui/cocoa/download/
download_item_button.mm 41 withEvent:[NSApp currentEvent]
download_util_mac.mm 49 NSTimeInterval eventTime = [[NSApp currentEvent] timestamp];
  /external/chromium/chrome/browser/ui/cocoa/
history_menu_cocoa_controller.mm 37 event_utils::WindowOpenDispositionFromNSEvent([NSApp currentEvent]);
  /external/webkit/Source/WebKit/mac/WebView/
WebViewEventHandling.mm 178 modifierFlags:[[NSApp currentEvent] modifierFlags]
181 context:[[NSApp currentEvent] context]
200 modifierFlags:[[NSApp currentEvent] modifierFlags]
203 context:[[NSApp currentEvent] context]
WebWindowAnimation.m 34 return ([[NSApp currentEvent] modifierFlags] & NSShiftKeyMask) ? duration * slowMotionFactor : duration;
  /external/chromium/chrome/browser/ui/cocoa/toolbar/
back_forward_menu_controller.mm 99 event_utils::WindowOpenDispositionFromNSEvent([NSApp currentEvent]));
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_folder_target.mm 45 // draggable. Thus we must use [NSApp currentEvent].
57 NSEvent* event = [NSApp currentEvent];
bookmark_menu_cocoa_controller.mm 80 event_utils::WindowOpenDispositionFromNSEvent([NSApp currentEvent]);
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field.mm 131 NSEvent* currentEvent = [NSApp currentEvent];
132 if ([currentEvent type] == NSLeftMouseUp &&
321 NSEvent* theEvent = [NSApp currentEvent];
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 876 // FIXME: WebPage::currentEvent is used by the plug-in code to avoid having to convert from DOM events back to
879 const WebEvent* WebPage::currentEvent()
884 class CurrentEvent {
886 explicit CurrentEvent(const WebEvent& event)
892 ~CurrentEvent()
966 CurrentEvent currentEvent(mouseEvent);
986 CurrentEvent currentEvent(wheelEvent);
1004 CurrentEvent currentEvent(keyboardEvent)
    [all...]
  /external/webkit/Source/WebCore/page/mac/
EventHandlerMac.mm 124 NSEvent *event = [NSApp currentEvent];
176 // just pass currentEvent down to the widget, we don't want to call it for events that
190 // When they finish, currentEvent is the mouseUp that they exited on. We need to update
196 NSEvent *currentEventAfterHandlingMouseDown = [NSApp currentEvent];
270 // When they finish, currentEvent is the mouseUp that they exited on. We need to update
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_controller_unittest.mm 41 NSEvent* current = [NSApp currentEvent];
184 NSEvent* current = [NSApp currentEvent];
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_mac.h 88 // currentEvent]|.
  /external/chromium/chrome/browser/ui/cocoa/notifications/
balloon_controller.mm 139 withEvent:[NSApp currentEvent]
  /external/chromium/chrome/browser/ui/cocoa/find_bar/
find_bar_cocoa_controller.mm 194 NSEvent* event = [NSApp currentEvent];
225 NSEvent* event = [NSApp currentEvent];
  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar_controller.mm 376 event_utils::WindowOpenDispositionFromNSEvent([NSApp currentEvent]);
497 event_utils::WindowOpenDispositionFromNSEvent([NSApp currentEvent]);

Completed in 1411 milliseconds

1 2 3