HomeSort by relevance Sort by last modified time
    Searched refs:mouseDownEvent (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebKit/mac/Misc/
WebNSViewExtras.h 44 // returns whether a drag should begin starting with mouseDownEvent; if the time
47 - (BOOL)_web_dragShouldBeginFromMouseDown:(NSEvent *)mouseDownEvent
54 - (BOOL)_web_dragShouldBeginFromMouseDown:(NSEvent *)mouseDownEvent
WebNSViewExtras.m 69 - (BOOL)_web_dragShouldBeginFromMouseDown:(NSEvent *)mouseDownEvent
77 if ([mouseDownEvent type] != NSLeftMouseDown) {
96 float deltax = ABS([nextEvent locationInWindow].x - [mouseDownEvent locationInWindow].x);
97 float deltay = ABS([nextEvent locationInWindow].y - [mouseDownEvent locationInWindow].y);
131 - (BOOL)_web_dragShouldBeginFromMouseDown:(NSEvent *)mouseDownEvent
134 return [self _web_dragShouldBeginFromMouseDown:mouseDownEvent
  /external/webkit/Source/WebKit/chromium/tests/
WebInputEventFactoryTestGtk.cpp 128 WebMouseEvent mouseDownEvent;
134 mouseDownEvent = WebInputEventFactory::mouseEvent(&mouseDown);
135 EXPECT_EQ(i, mouseDownEvent.clickCount);
144 mouseDownEvent = WebInputEventFactory::mouseEvent(&mouseDown);
145 EXPECT_EQ(1, mouseDownEvent.clickCount);
162 mouseDownEvent = WebInputEventFactory::mouseEvent(&mouseDown);
163 EXPECT_EQ(1, mouseDownEvent.clickCount);
  /external/webkit/Source/WebKit/mac/WebView/
WebViewEventHandling.mm 67 if (event == _private->mouseDownEvent)
71 [_private->mouseDownEvent release];
72 _private->mouseDownEvent = event;
WebViewData.h 164 NSEvent *mouseDownEvent; // Kept after handling the event.
WebHTMLView.mm 491 NSEvent *mouseDownEvent; // Kept after handling the event.
624 [mouseDownEvent release];
649 [mouseDownEvent release];
659 mouseDownEvent = nil;
    [all...]
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultUIDelegate.m 191 - (BOOL)webView:(WebView *)webView shouldBeginDragForElement:(NSDictionary *)element dragImage:(NSImage *)dragImage mouseDownEvent:(NSEvent *)mouseDownEvent mouseDraggedEvent:(NSEvent *)mouseDraggedEvent

Completed in 68 milliseconds