Home | History | Annotate | Download | only in fxcrt

Lines Matching defs:Bottom

224   baseType bottom() const { return top + height; }
246 void Inflate(baseType left, baseType top, baseType right, baseType bottom) {
250 FXT_RECT::height += top + bottom;
262 void Deflate(baseType left, baseType top, baseType right, baseType bottom) {
266 FXT_RECT::height -= top + bottom;
282 rt.bottom() <= bottom();
344 baseType r = right(), b = bottom();
362 baseType r = right(), b = bottom();
372 if (b < rt.bottom()) {
373 b = rt.bottom();
379 baseType r = right(), b = bottom();
389 if (b > rt.bottom()) {
390 b = rt.bottom();
430 int bottom;
432 FX_RECT() : left(0), top(0), right(0), bottom(0) {}
438 bottom = bottom1;
443 int Height() const { return bottom - top; }
445 FX_BOOL IsEmpty() const { return right <= left || bottom <= top; }
459 bottom == src.bottom;
466 bottom += dy;
471 other_rect.top >= top && other_rect.bottom <= bottom;
475 return x >= left && x < right && y >= top && y < bottom;
485 int16_t Bottom;
489 CFX_FloatRect() { left = right = bottom = top = 0; }
496 bottom = bottom1;
503 bottom = pArray[1];
510 FX_BOOL IsEmpty() const { return left >= right || bottom >= top; }
514 void Reset() { left = right = bottom = top = 0; }
536 bottom = top = y;
543 FX_FLOAT Height() const { return top - bottom; }
549 bottom -= y;
559 bottom -= other_bottom;
565 Inflate(rt.left, rt.bottom, rt.right, rt.top);
572 bottom += y;
582 bottom += other_bottom;
588 Deflate(rt.left, rt.bottom, rt.right, rt.top);
595 bottom += f;
604 FX_FLOAT bottom;
718 FX_FLOAT& bottom) const;
721 TransformRect(rect.left, rect.right, rect.top, rect.bottom);