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

  /external/chromium_org/ash/display/
mouse_cursor_event_filter.cc 305 gfx::Point point_in_root = point_in_screen; local
306 wm::ConvertPointFromScreen(root_at_point, &point_in_root);
322 if (point_in_root.x() <= root_bounds.x()) {
325 } else if (point_in_root.x() >= root_bounds.right()) {
327 } else if (point_in_root.y() <= root_bounds.y()) {
329 } else if (point_in_root.y() >= root_bounds.bottom()) {
  /external/chromium_org/ui/aura/
window.cc 640 gfx::Point point_in_root(point_in_window);
641 ConvertPointToTarget(this, root_window, &point_in_root);
642 root_window->GetHost()->MoveCursorTo(point_in_root);
663 bool Window::ContainsPointInRoot(const gfx::Point& point_in_root) const {
667 gfx::Point local_point(point_in_root);
    [all...]
window.h 241 // Returns true if the |point_in_root| in root window's coordinate falls
244 bool ContainsPointInRoot(const gfx::Point& point_in_root) const;
  /external/chromium_org/ash/shelf/
shelf_view.cc 619 gfx::Point point_in_root = location_in_screen_coordinates; local
622 &point_in_root); local
623 ui::MouseEvent event(ui::ET_MOUSE_PRESSED, pt, point_in_root, 0, 0);
642 gfx::Point point_in_root = location_in_screen_coordinates; local
645 &point_in_root); local
646 ui::MouseEvent event(ui::ET_MOUSE_DRAGGED, pt, point_in_root, 0, 0);
    [all...]

Completed in 319 milliseconds