Lines Matching refs:bottom_
56 CommonRect() : left_(0), top_(0), right_(0), bottom_(0) {} in CommonRect()
79 bottom_ = bottom; in CommonRect()
95 bottom_ = other.bottom_; in CommonRect()
110 bottom_ = other.bottom_; in CommonRect()
128 bottom_ = bottom; in SetRect()
150 return bottom_ - top_ + 1; in GetHeight()
216 return bottom_; in GetBottom()
239 bottom_ += y - top_; in SetY()
254 bottom_ += y - top_; in SetPosition()
278 bottom_ = top_ + height - 1; in SetHeight()
322 bottom_ = bottom; in SetBottom()
335 bottom_ = top_ + height - 1; in Resize()
346 return static_cast<uint32_t>(right_ - left_ + 1) * (bottom_ - top_ + 1); in GetSize()
363 bottom_ = MATH_MIN(rect1.bottom_, rect2.bottom_); in Intersect()
364 if ((left_ > right_) || (top_ > bottom_)) { in Intersect()
383 bottom_ = MATH_MAX(rect1.bottom_, rect2.bottom_); in Join()
398 (point.y_ <= this->bottom_)) { in IsContains()
417 (point.y <= this->bottom_)) { in IsContains()
434 return (top_ == other.bottom_ + 1) || (bottom_ == other.top_ - 1); in IsExtends()
437 if (top_ == other.top_ && bottom_ == other.bottom_) { in IsExtends()
453 …((this->left_ <= other.right_) && (this->right_ >= other.left_) && (this->top_ <= other.bottom_) && in IsIntersect()
454 (this->bottom_ >= other.top_)) { in IsIntersect()
474 other.bottom_ <= this->bottom_) { in IsContains()
487 bottom_ = other.bottom_;
494 bottom_ = other.bottom_;
498 …left_ == other.left_ && right_ == other.right_ && top_ == other.top_ && bottom_ == other.bottom_) {
509 T bottom_; variable