/external/chromium/chrome/browser/ui/cocoa/tab_contents/ |
web_contents_drag_source.mm | 28 void FlipPointCoordinates(NSPoint& screenPoint, 33 // Flip |screenPoint|. 35 screenPoint.y = NSHeight(screenFrame) - screenPoint.y; 102 - (void)endDragAt:(NSPoint)screenPoint 108 NSPoint localPoint = [contentsView_ convertPoint:screenPoint fromView: nil]; 109 FlipPointCoordinates(screenPoint, localPoint, contentsView_); 111 screenPoint.x, screenPoint.y, 119 - (void)moveDragTo:(NSPoint)screenPoint { [all...] |
web_drop_target.mm | 52 NSPoint screenPoint = [[view window] convertBaseToScreen:windowPoint]; 55 screenPoint.y = screenFrame.size.height - screenPoint.y; 56 return screenPoint; 98 NSPoint screenPoint = [self flipWindowPointToScreen:windowPoint view:view]; 102 gfx::Point(screenPoint.x, screenPoint.y), 137 NSPoint screenPoint = [self flipWindowPointToScreen:windowPoint view:view]; 141 gfx::Point(screenPoint.x, screenPoint.y) [all...] |
web_drag_source.mm | 234 - (NSPoint)convertScreenPoint:(NSPoint)screenPoint { 236 NSPoint basePoint = [[contentsView_ window] convertScreenToBase:screenPoint]; 274 - (void)endDragAt:(NSPoint)screenPoint 280 // Convert |screenPoint| to view coordinates and flip it. 283 localPoint = [self convertScreenPoint:screenPoint]; 286 // Flip |screenPoint|. 288 screenPoint.y = screenFrame.size.height - screenPoint.y; 297 screenPoint.x, screenPoint.y [all...] |
web_contents_drag_source.h | 54 - (void)endDragAt:(NSPoint)screenPoint 58 - (void)moveDragTo:(NSPoint)screenPoint;
|
web_drag_source.h | 68 - (void)endDragAt:(NSPoint)screenPoint 72 - (void)moveDragTo:(NSPoint)screenPoint;
|
web_drop_target_unittest.mm | 61 NSPoint screenPoint = 66 EXPECT_EQ(0, screenPoint.x); 69 EXPECT_NE(0, screenPoint.y);
|
/external/chromium_org/content/browser/web_contents/ |
web_drag_dest_mac.mm | 84 NSPoint screenPoint = [[view window] convertBaseToScreen:windowPoint]; 87 screenPoint.y = screenFrame.size.height - screenPoint.y; 88 return screenPoint; 142 NSPoint screenPoint = [self flipWindowPointToScreen:windowPoint view:view]; 146 gfx::Point(screenPoint.x, screenPoint.y), 193 NSPoint screenPoint = [self flipWindowPointToScreen:windowPoint view:view]; 197 gfx::Point(screenPoint.x, screenPoint.y) [all...] |
web_drag_source_mac.mm | 222 - (NSPoint)convertScreenPoint:(NSPoint)screenPoint { 224 NSPoint basePoint = [[contentsView_ window] convertScreenToBase:screenPoint]; 262 - (void)endDragAt:(NSPoint)screenPoint 271 // Convert |screenPoint| to view coordinates and flip it. 274 localPoint = [self convertScreenPoint:screenPoint]; 277 // Flip |screenPoint|. 279 screenPoint.y = screenFrame.size.height - screenPoint.y; 287 contents_->DragSourceEndedAt(localPoint.x, localPoint.y, screenPoint.x, 288 screenPoint.y, static_cast<blink::WebDragOperation>(operation)) [all...] |
web_drag_source_mac.h | 83 - (void)endDragAt:(NSPoint)screenPoint 87 - (void)moveDragTo:(NSPoint)screenPoint;
|
web_drag_dest_mac_unittest.mm | 72 NSPoint screenPoint = 77 EXPECT_EQ(0, screenPoint.x); 80 EXPECT_NE(0, screenPoint.y);
|
web_drag_dest_gtk.cc | 153 ui::ScreenPoint(widget_), 278 ui::ScreenPoint(widget_), 321 DragTargetDrop(ui::ClientPoint(widget_), ui::ScreenPoint(widget_),
|
web_contents_view_mac.mm | 553 endedAt:(NSPoint)screenPoint 555 [dragSource_ endDragAt:screenPoint operation:operation]; 562 - (void)draggedImage:(NSImage*)draggedImage movedTo:(NSPoint)screenPoint { 563 [dragSource_ moveDragTo:screenPoint];
|
web_drag_source_gtk.cc | 298 gfx::Point root = ui::ScreenPoint(GetContentNativeView()); 370 gfx::Point root = ui::ScreenPoint(GetContentNativeView());
|
/external/chromium_org/ui/base/gtk/ |
gtk_screen_util.cc | 16 gfx::Point ScreenPoint(GtkWidget* widget) {
|
gtk_screen_util.h | 21 UI_EXPORT gfx::Point ScreenPoint(GtkWidget* widget);
|
/external/chromium/chrome/browser/tab_contents/ |
web_drag_dest_gtk.cc | 128 gtk_util::ScreenPoint(widget_), 232 gtk_util::ScreenPoint(widget_), 269 gtk_util::ScreenPoint(widget_));
|
tab_contents_view_mac.mm | 452 endedAt:(NSPoint)screenPoint 454 [dragSource_ endDragAt:screenPoint operation:operation]; 461 - (void)draggedImage:(NSImage*)draggedImage movedTo:(NSPoint)screenPoint { 462 [dragSource_ moveDragTo:screenPoint];
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebViewImpl.h | 256 const WebPoint& screenPoint, 260 const WebPoint& screenPoint, 266 const WebPoint& screenPoint, 271 const WebPoint& screenPoint, 277 const WebPoint& screenPoint, 614 const WebPoint& screenPoint, [all...] |
WebViewImpl.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
EventSender.cpp | 370 WebPoint screenPoint(event.globalX, event.globalY); 373 currentDragEffect = webview()->dragTargetDragEnter(dragData, clientPoint, screenPoint, currentDragEffectsAllowed, 0); 489 WebPoint screenPoint(e.globalX, e.globalY); 490 finishDragAndDrop(e, webview()->dragTargetDragOver(clientPoint, screenPoint, currentDragEffectsAllowed, 0)); 496 WebPoint screenPoint(e.globalX, e.globalY); 499 webview()->dragTargetDrop(clientPoint, screenPoint, 0); 502 webview()->dragSourceEndedAt(clientPoint, screenPoint, currentDragEffect); 542 WebPoint screenPoint(e.globalX, e.globalY); 543 currentDragEffect = webview()->dragTargetDragOver(clientPoint, screenPoint, currentDragEffectsAllowed, 0); [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
tab_contents_drag_source.cc | 277 gfx::Point root = gtk_util::ScreenPoint(GetContentNativeView()); 349 gfx::Point root = gtk_util::ScreenPoint(GetContentNativeView());
|
gtk_util.h | 232 gfx::Point ScreenPoint(GtkWidget* widget);
|
gtk_util.cc | 754 gfx::Point ScreenPoint(GtkWidget* widget) { [all...] |
/external/chromium_org/third_party/WebKit/public/web/ |
WebView.h | 339 const WebPoint& clientPoint, const WebPoint& screenPoint, 344 const WebPoint& clientPoint, const WebPoint& screenPoint, 354 const WebPoint& clientPoint, const WebPoint& screenPoint, 358 const WebPoint& clientPoint, const WebPoint& screenPoint, 363 const WebPoint& clientPoint, const WebPoint& screenPoint,
|
/prebuilts/devtools/tools/lib/ |
jfreechart-swt-1.0.9.jar | |