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

  /external/chromium_org/ash/shelf/
shelf_bezel_event_filter.cc 27 gfx::Point point_in_screen(event->location());
29 wm::ConvertPointToScreen(target, &point_in_screen);
31 Shell::GetScreen()->GetDisplayNearestPoint(point_in_screen).bounds();
32 if ((!screen.Contains(point_in_screen) &&
33 IsShelfOnBezel(screen, point_in_screen)) ||
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller.h 131 void Drag(const gfx::Point& point_in_screen);
256 void UpdateDockInfo(const gfx::Point& point_in_screen);
266 // Tests whether |point_in_screen| is past a minimum elasticity threshold
268 bool CanStartDrag(const gfx::Point& point_in_screen) const;
272 void ContinueDragging(const gfx::Point& point_in_screen);
279 const gfx::Point& point_in_screen);
283 void DragActiveTabStacked(const gfx::Point& point_in_screen);
287 void MoveAttachedToNextStackedIndex(const gfx::Point& point_in_screen);
288 void MoveAttachedToPreviousStackedIndex(const gfx::Point& point_in_screen);
291 void MoveAttached(const gfx::Point& point_in_screen);
    [all...]
tab_drag_controller.cc 324 void TabDragController::Drag(const gfx::Point& point_in_screen) {
326 "point_in_screen", point_in_screen.ToString());
335 if (!CanStartDrag(point_in_screen))
356 OffsetX(GetAttachedDragPoint(point_in_screen).x(), &drag_bounds);
358 point_in_screen,
361 point_in_screen.x() -
367 point_in_screen,
371 RunMoveLoop(GetWindowOffset(point_in_screen));
376 ContinueDragging(point_in_screen);
    [all...]
  /external/chromium_org/ash/wm/gestures/
overview_gesture_handler.cc 85 gfx::Point point_in_screen(event.location());
87 wm::ConvertPointToScreen(target, &point_in_screen);
89 point_in_screen).bounds().y() + kTopBezelExtraPixels >
90 point_in_screen.y();
  /external/chromium_org/ash/wm/
coordinate_conversion.cc 41 gfx::Point* point_in_screen) {
43 ConvertPointFromScreen(window, point_in_screen);
coordinate_conversion.h 39 gfx::Point* point_in_screen);
drag_window_resizer_unittest.cc 125 const gfx::Point& point_in_screen) {
129 target_root, point_in_screen);
  /external/chromium_org/ash/display/
event_transformation_handler.cc 43 gfx::Point point_in_screen(event->location());
45 wm::ConvertPointToScreen(target, &point_in_screen);
47 Shell::GetScreen()->GetDisplayNearestPoint(point_in_screen);
mouse_cursor_event_filter.h 81 const gfx::Point& point_in_screen);
83 const gfx::Point& point_in_screen);
101 const gfx::Point& point_in_screen);
mouse_cursor_event_filter.cc 119 // the point_in_screen, which is outside of the root window.
120 void MoveCursorTo(aura::Window* root, const gfx::Point& point_in_screen) {
121 gfx::Point point_in_native = point_in_screen;
248 gfx::Point point_in_screen = event->location(); local
250 wm::ConvertPointToScreen(target, &point_in_screen);
252 return WarpMouseCursorInNativeCoords(point_in_native, point_in_screen);
254 gfx::Point point_in_screen(event->location());
256 wm::ConvertPointToScreen(target, &point_in_screen);
258 point_in_screen);
264 const gfx::Point& point_in_screen) {
    [all...]
mouse_cursor_event_filter_unittest.cc 30 gfx::Point point_in_screen) {
32 target_root, point_in_screen);
40 gfx::Point point_in_screen) {
47 target_root, point_in_screen);
display_controller.cc 507 gfx::Point point_in_screen = Shell::GetScreen()->GetCursorScreenPoint(); local
531 int64 distance_squared = (center - point_in_screen).LengthSquared();
680 gfx::Point point_in_screen = screen->GetCursorScreenPoint(); local
681 gfx::Display display = screen->GetDisplayNearestPoint(point_in_screen);
686 client->ConvertPointFromScreen(root_window, &point_in_screen);
687 root_window->GetHost()->ConvertPointToNativeScreen(&point_in_screen);
688 cursor_location_in_native_coords_for_restore_ = point_in_screen;
display_manager.h 151 const gfx::Point& point_in_screen) const;
display_manager.cc 367 const gfx::Point& point_in_screen) const {
371 if (display.bounds().Contains(point_in_screen))
    [all...]
  /external/chromium_org/ash/test/
ui_controls_factory_ash.cc 45 // Returns the UIControls object for the RootWindow at |point_in_screen|.
46 UIControlsAura* GetUIControlsAt(const gfx::Point& point_in_screen) {
48 return GetUIControlsForRootWindow(ash::wm::GetRootWindowAt(point_in_screen));
ash_test_base.cc 65 const gfx::Point& point_in_screen) const OVERRIDE {
67 gfx::Display display = screen->GetDisplayNearestPoint(point_in_screen);
  /external/chromium_org/ui/aura/test/
event_generator.h 150 void MoveMouseTo(const gfx::Point& point_in_screen, int count);
151 void MoveMouseTo(const gfx::Point& point_in_screen) {
152 MoveMouseTo(point_in_screen, 1);
event_generator.cc 185 void EventGenerator::MoveMouseTo(const gfx::Point& point_in_screen,
191 gfx::Vector2dF diff(point_in_screen - current_location_);
202 current_location_ = point_in_screen;
  /external/chromium_org/ash/wm/workspace/
multi_window_resize_controller.cc 121 virtual bool Contains(const gfx::Point& point_in_screen,
123 return host_->IsOverWindows(point_in_screen);
  /external/chromium_org/ui/views/
view_unittest.cc     [all...]

Completed in 1506 milliseconds