Home | History | Annotate | Download | only in cpp

Lines Matching refs:right

26 void Rect::Inset(int32_t left, int32_t top, int32_t right, int32_t bottom) {
28 set_width(std::max<int32_t>(width() - left - right, 0));
38 return (point_x >= x()) && (point_x < right()) &&
43 return (rect.x() >= x() && rect.right() <= right() &&
48 return !(rect.x() >= right() || rect.right() <= x() ||
55 int32_t rr = std::min(right(), rect.right());
73 int32_t rr = std::max(right(), rect.right());
88 int32_t rr = right();
94 rx = rect.right();
98 } else if (rect.x() <= x() && rect.right() >= right()) {
125 (x() == rect.right() || right() == rect.x())) ||