Home | History | Annotate | Download | only in automation

Lines Matching refs:POINT

48 static void MoveMouse(const POINT& point) {
49 SetCursorPos(point.x, point.y);
54 PostMessage(NULL, WM_MOUSEMOVE, 0, MAKELPARAM(point.x, point.y));
62 gfx::Point cursor_point(pos);
63 DCHECK_EQ(point.x, cursor_point.x());
64 DCHECK_EQ(point.y, cursor_point.y());
81 const gfx::Point& point,
83 : view_(view), type_(type), point_(point), flags_(flags) {}
94 gfx::Point screen_location(point_.x(), point_.y());
118 gfx::Point point_;
150 const std::vector<gfx::Point>& drag_path,
185 POINT temp = drag_path[0].ToPOINT();
197 POINT end = drag_path[drag_path.size() - 1].ToPOINT();