Searched defs:point_in_screen (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/ash/test/
H A Dui_controls_factory_ash.cc44 // Returns the UIControls object for the RootWindow at the |point_in_screen|
47 // the |point_in_screen|.
48 UIControlsAura* GetUIControlsAt(gfx::Point* point_in_screen) { argument
50 aura::RootWindow* root = ash::wm::GetRootWindowAt(*point_in_screen);
55 screen_position_client->ConvertPointFromScreen(root, point_in_screen);
/external/chromium_org/ash/wm/
H A Dcoordinate_conversion.cc41 gfx::Point* point_in_screen) {
43 ConvertPointFromScreen(window, point_in_screen);
40 ConvertPointFromScreen(aura::Window* window, gfx::Point* point_in_screen) argument
/external/chromium_org/ash/display/
H A Dmouse_cursor_event_filter.cc85 gfx::Point point_in_screen(event->location());
87 wm::ConvertPointToScreen(target, &point_in_screen);
88 if (WarpMouseCursorIfNecessary(target->GetRootWindow(), point_in_screen))
94 const gfx::Point& point_in_screen) {
100 aura::RootWindow* root_at_point = wm::GetRootWindowAt(point_in_screen);
101 gfx::Point point_in_root = point_in_screen;
131 gfx::Point point_in_dst_screen(point_in_screen);
139 !src_indicator_bounds_.Contains(point_in_screen)) {
92 WarpMouseCursorIfNecessary( aura::RootWindow* target_root, const gfx::Point& point_in_screen) argument
H A Ddisplay_controller.cc568 gfx::Point point_in_screen = Shell::GetScreen()->GetCursorScreenPoint(); local
592 int64 distance_squared = (center - point_in_screen).LengthSquared();
765 gfx::Point point_in_screen = Shell::GetScreen()->GetCursorScreenPoint(); local
767 Shell::GetScreen()->GetDisplayNearestPoint(point_in_screen);
772 client->ConvertPointFromScreen(root_window, &point_in_screen);
773 root_window->ConvertPointToNativeScreen(&point_in_screen);
774 cursor_location_in_native_coords_for_restore_ = point_in_screen;
/external/chromium_org/ui/aura/test/
H A Devent_generator.h147 void MoveMouseTo(const gfx::Point& point_in_screen, int count);
148 void MoveMouseTo(const gfx::Point& point_in_screen) { argument
149 MoveMouseTo(point_in_screen, 1);
H A Devent_generator.cc158 void EventGenerator::MoveMouseTo(const gfx::Point& point_in_screen, argument
164 gfx::Vector2dF diff(point_in_screen - current_location_);
175 current_location_ = point_in_screen;
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_drag_controller.cc490 void TabDragController::Drag(const gfx::Point& point_in_screen) { argument
498 if (!CanStartDrag(point_in_screen))
506 RunMoveLoop(GetWindowOffset(point_in_screen));
511 ContinueDragging(point_in_screen);
716 void TabDragController::UpdateDockInfo(const gfx::Point& point_in_screen) { argument
718 DockInfo dock_info = GetDockInfoAtPoint(point_in_screen);
758 bool TabDragController::CanStartDrag(const gfx::Point& point_in_screen) const {
762 int x_offset = abs(point_in_screen.x() - start_point_in_screen_.x());
763 int y_offset = abs(point_in_screen.y() - start_point_in_screen_.y());
768 void TabDragController::ContinueDragging(const gfx::Point& point_in_screen) { argument
824 DragBrowserToNewTabStrip( TabStrip* target_tabstrip, const gfx::Point& point_in_screen) argument
886 DragActiveTabStacked( const gfx::Point& point_in_screen) argument
896 MoveAttachedToNextStackedIndex( const gfx::Point& point_in_screen) argument
907 MoveAttachedToPreviousStackedIndex( const gfx::Point& point_in_screen) argument
918 MoveAttached(const gfx::Point& point_in_screen) argument
984 MoveDetached(const gfx::Point& point_in_screen) argument
993 StartMoveStackedTimerIfNecessary( const gfx::Point& point_in_screen, int delay_ms) argument
1020 GetDetachPosition( const gfx::Point& point_in_screen) argument
1032 GetDockInfoAtPoint( const gfx::Point& point_in_screen) argument
1057 GetTargetTabStripForPoint( const gfx::Point& point_in_screen) argument
1122 Attach(TabStrip* attached_tabstrip, const gfx::Point& point_in_screen) argument
1298 DetachIntoNewBrowserAndRunMoveLoop( const gfx::Point& point_in_screen) argument
1585 GetAttachedDragPoint( const gfx::Point& point_in_screen) argument
1991 BringWindowUnderPointToFront( const gfx::Point& point_in_screen) argument
2047 CreateBrowserForDrag( TabStrip* source, const gfx::Point& point_in_screen, gfx::Vector2d* drag_offset, std::vector<gfx::Rect>* drag_bounds) argument
2114 GetWindowOffset( const gfx::Point& point_in_screen) argument
[all...]

Completed in 144 milliseconds