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 120 gfx::Point point_in_root = point_in_screen; local
121 wm::ConvertPointFromScreen(root_at_point, &point_in_root);
137 if (point_in_root.x() <= root_bounds.x()) {
140 } else if (point_in_root.x() >= root_bounds.right()) {
142 } else if (point_in_root.y() <= root_bounds.y()) {
144 } else if (point_in_root.y() >= root_bounds.bottom()) {
  /external/chromium_org/ash/shelf/
shelf_view.cc 615 gfx::Point point_in_root = location_in_screen_coordinates; local
618 &point_in_root); local
619 ui::MouseEvent event(ui::ET_MOUSE_PRESSED, pt, point_in_root, 0);
638 gfx::Point point_in_root = location_in_screen_coordinates; local
641 &point_in_root); local
642 ui::MouseEvent event(ui::ET_MOUSE_DRAGGED, pt, point_in_root, 0);
    [all...]
  /external/chromium_org/ui/aura/
window.h 290 // Returns true if the |point_in_root| in root window's coordinate falls
293 bool ContainsPointInRoot(const gfx::Point& point_in_root) const;
window.cc 680 gfx::Point point_in_root(point_in_window);
681 ConvertPointToTarget(this, root_window, &point_in_root);
682 root_window->GetDispatcher()->MoveCursorTo(point_in_root);
709 bool Window::ContainsPointInRoot(const gfx::Point& point_in_root) const {
713 gfx::Point local_point(point_in_root);
    [all...]

Completed in 122 milliseconds