Home | History | Annotate | Download | only in gfx

Lines Matching refs:x_

41   int x() const { return x_; }
45 x_ = x;
49 void set_x(int x) { x_ = x; }
53 x_ += delta_x;
59 copy.Offset(other.x_, other.y_);
65 copy.Offset(-other.x_, -other.y_);
70 return Point((x_ + other.x_) / 2, (y_ + other.y_) / 2);
74 return x_ == rhs.x_ && y_ == rhs.y_;
88 return (y_ == rhs.y_) ? (x_ < rhs.x_) : (y_ < rhs.y_);
101 int x_;