Lines Matching refs:top
30 rect.top = min_c(r1.top, r2.top); in union_rect()
47 rect.top = max_c(r1.top, r2.top); in sect_rect()
60 rect.top += y; in offset_rect()
70 rect.top = (int)(rect.top * y); in scale_rect()
80 return BRect((float)rect.left, (float)rect.top, in to_BRect()
101 clipRect.top = (int32)rect.top; in to_clipping_rect()
114 && py >= rect.top && py <= rect.bottom) in point_in()
125 && pt.y >= rect.top && pt.y <= rect.bottom) in point_in()
134 return rect.top <= testRect.top && rect.bottom >= testRect.bottom in rect_contains()
143 if (rect.left <= rect.right && rect.top <= rect.bottom) in valid_rect()
162 return !(rectA.left > rectB.right || rectA.top > rectB.bottom in rects_intersect()
163 || rectA.right < rectB.left || rectA.bottom < rectB.top); in rects_intersect()
179 return rect.bottom - rect.top; in rect_height()