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

  /external/chromium_org/ash/display/
event_transformation_handler.cc 42 gfx::Point point_in_screen(event->location());
44 ::wm::ConvertPointToScreen(target, &point_in_screen);
46 Shell::GetScreen()->GetDisplayNearestPoint(point_in_screen);
mouse_cursor_event_filter.h 73 // the point_in_screen, which is outside of the root window.
75 const gfx::Point& point_in_screen);
84 const gfx::Point& point_in_screen);
102 const gfx::Point& point_in_screen);
mouse_cursor_event_filter.cc 203 const gfx::Point& point_in_screen) {
204 gfx::Point point_in_native = point_in_screen;
241 gfx::Point point_in_screen = event->location(); local
242 ::wm::ConvertPointToScreen(target, &point_in_screen);
244 return WarpMouseCursorInNativeCoords(point_in_native, point_in_screen);
249 const gfx::Point& point_in_screen) {
265 MoveCursorTo(dst_root, point_in_screen);
267 MoveCursorTo(src_root, point_in_screen);
383 const gfx::Point& point_in_screen) {
384 gfx::Point native = 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 512 gfx::Point point_in_screen = Shell::GetScreen()->GetCursorScreenPoint(); local
536 int64 distance_squared = (center - point_in_screen).LengthSquared();
682 gfx::Point point_in_screen = screen->GetCursorScreenPoint(); local
683 gfx::Display display = screen->GetDisplayNearestPoint(point_in_screen);
688 client->ConvertPointFromScreen(root_window, &point_in_screen);
689 root_window->GetHost()->ConvertPointToNativeScreen(&point_in_screen);
690 cursor_location_in_native_coords_for_restore_ = point_in_screen;
display_manager.h 151 const gfx::Point& point_in_screen) const;
display_manager.cc 394 const gfx::Point& point_in_screen) const {
398 if (display.bounds().Contains(point_in_screen))
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller.h 123 void Drag(const gfx::Point& point_in_screen);
230 void UpdateDockInfo(const gfx::Point& point_in_screen);
240 // Tests whether |point_in_screen| is past a minimum elasticity threshold
242 bool CanStartDrag(const gfx::Point& point_in_screen) const;
246 void ContinueDragging(const gfx::Point& point_in_screen);
253 const gfx::Point& point_in_screen);
257 void DragActiveTabStacked(const gfx::Point& point_in_screen);
261 void MoveAttachedToNextStackedIndex(const gfx::Point& point_in_screen);
262 void MoveAttachedToPreviousStackedIndex(const gfx::Point& point_in_screen);
265 void MoveAttached(const gfx::Point& point_in_screen);
    [all...]
tab_drag_controller.cc 327 void TabDragController::Drag(const gfx::Point& point_in_screen) {
329 "point_in_screen", point_in_screen.ToString());
338 if (!CanStartDrag(point_in_screen))
359 OffsetX(GetAttachedDragPoint(point_in_screen).x(), &drag_bounds);
361 point_in_screen,
364 point_in_screen.x() -
370 point_in_screen,
374 RunMoveLoop(GetWindowOffset(point_in_screen));
379 ContinueDragging(point_in_screen);
    [all...]
  /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/ui/views/widget/desktop_aura/
desktop_window_tree_host_x11_interactive_uitest.cc 95 // |point_in_screen|.
97 const gfx::Point& point_in_screen) {
109 xev.xmotion.x = point_in_screen.x() - bounds_in_screen.x();
110 xev.xmotion.y = point_in_screen.y() - bounds_in_screen.y();
111 xev.xmotion.x_root = point_in_screen.x();
112 xev.xmotion.y_root = point_in_screen.y();
202 gfx::Point point_in_screen = widget2->GetWindowBoundsInScreen().CenterPoint(); local
203 DispatchMouseMotionEvent(host2, point_in_screen);
206 EXPECT_EQ(point_in_screen.ToString(),
214 point_in_screen += gfx::Vector2d(1, 0)
    [all...]
  /external/chromium_org/ui/wm/core/
coordinate_conversion.cc 21 gfx::Point* point_in_screen) {
26 ConvertPointFromScreen(window, point_in_screen);
coordinate_conversion.h 28 gfx::Point* point_in_screen);
  /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/athena/wm/
bezel_controller.cc 42 gfx::Point point_in_screen(gfx::ToRoundedPoint(location));
43 wm::ConvertPointToScreen(window, &point_in_screen);
45 ? point_in_screen.x()
46 : point_in_screen.x() - GetDisplay(window).bounds().width();
55 gfx::Point point_in_screen(gfx::ToRoundedPoint(location));
56 wm::ConvertPointToScreen(window, &point_in_screen);
57 if (point_in_screen.x() < kBezelWidth)
59 if (point_in_screen.x() > screen_width - kBezelWidth)
  /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 66 const gfx::Point& point_in_screen) const OVERRIDE {
68 gfx::Display display = screen->GetDisplayNearestPoint(point_in_screen);
  /external/chromium_org/ui/events/test/
event_generator.h 169 void MoveMouseTo(const gfx::Point& point_in_screen, int count);
170 void MoveMouseTo(const gfx::Point& point_in_screen) {
171 MoveMouseTo(point_in_screen, 1);
event_generator.cc 165 void EventGenerator::MoveMouseTo(const gfx::Point& point_in_screen,
171 gfx::Vector2dF diff(point_in_screen - current_location_);
182 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/ash/wm/
drag_window_resizer_unittest.cc 125 const gfx::Point& point_in_screen) {
129 target_root, point_in_screen);
  /external/chromium_org/ui/views/
view_unittest.cc     [all...]

Completed in 695 milliseconds