Home | History | Annotate | Download | only in gfx

Lines Matching refs:y_

42   int y() const { return y_; }
46 y_ = y;
50 void set_y(int y) { y_ = y; }
54 y_ += delta_y;
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_);
102 int y_;