Lines Matching refs:bottom
32 (r).left, (r).top, (r).right, (r).bottom
34 (r).left(), (r).top(), (r).right(), (r).bottom()
45 float bottom; variable
57 bottom(0) { in Rect()
60 inline Rect(float left, float top, float right, float bottom): in Rect() argument
64 bottom(bottom) { in Rect()
71 bottom(height) { in Rect()
78 bottom(rect.fBottom) { in Rect()
90 left = top = right = bottom = 0.0f; in clear()
96 return !((left < right) && (top < bottom)); in isEmpty()
100 left = top = right = bottom = 0.0f; in setEmpty()
103 inline void set(float left, float top, float right, float bottom) { in set() argument
107 this->bottom = bottom; in set()
111 set(r.left, r.top, r.right, r.bottom); in set()
119 return bottom - top; in getHeight()
127 return intersects(r.left, r.top, r.right, r.bottom); in intersects()
141 return intersect(r.left, r.top, r.right, r.bottom); in intersect()
145 return l >= left && t >= top && r <= right && b <= bottom; in contains()
149 return contains(r.left, r.top, r.right, r.bottom); in contains()
153 if (r.left < r.right && r.top < r.bottom) { in unionWith()
154 if (left < right && top < bottom) { in unionWith()
158 if (bottom < r.bottom) bottom = r.bottom; in unionWith()
164 bottom = r.bottom; in unionWith()
175 bottom += dy; in translate()
186 bottom += delta; in outset()
193 bottom += ydelta; in outset()
217 bottom = ceilf(bottom - Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries()
226 bottom = floorf(bottom + 0.5f + Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries()
234 bottom = floorf(bottom + 0.5f); in snapToPixelBoundaries()
241 bottom = ceilf(bottom); in roundOut()
248 bottom = fmaxf(bottom, y); in expandToCoverVertex()
252 ALOGD("%s[l=%f t=%f r=%f b=%f]", label ? label : "Rect", left, top, right, bottom);
260 tmp.bottom = fminf(bottom, tmp.bottom); in intersectWith()
268 tmp.bottom = fminf(bottom, b); in intersectWith()