Lines Matching defs:fBottom

21     int32_t fLeft, fTop, fRight, fBottom;
62 int bottom() const { return fBottom; }
78 int height() const { return fBottom - fTop; }
96 int centerY() const { return (fBottom + fTop) >> 1; }
101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
106 SK_MaxS32 == fBottom; }
118 SkIsS16(fRight) && SkIsS16(fBottom);
129 fBottom = bottom;
140 fBottom = y + height;
148 fRight = fBottom = SK_MaxS32;
157 fRight = fBottom = SK_MinS32;
164 return MakeLTRB(fLeft + dx, fTop + dy, fRight + dx, fBottom + dy);
171 return MakeLTRB(fLeft + dx, fTop + dy, fRight - dx, fBottom - dy);
181 fBottom += dy;
193 fBottom += newY - fTop;
206 fBottom -= dy;
217 return l >= fRight || fLeft >= r || t >= fBottom || fTop >= b;
227 (unsigned)(y - fTop) < (unsigned)(fBottom - fTop);
236 fRight >= right && fBottom >= bottom;
244 fRight >= r.fRight && fBottom >= r.fBottom;
255 SkASSERT(fLeft < fRight && fTop < fBottom);
259 fRight >= right && fBottom >= bottom;
263 return containsNoEmptyCheck(r.fLeft, r.fTop, r.fRight, r.fBottom);
272 return this->intersect(r.fLeft, r.fTop, r.fRight, r.fBottom);
283 a.fTop < b.fBottom && b.fTop < a.fBottom) {
287 fBottom = SkMin32(a.fBottom, b.fBottom);
303 a.fTop < b.fBottom && b.fTop < a.fBottom) {
307 fBottom = SkMin32(a.fBottom, b.fBottom);
320 fLeft < right && left < fRight && fTop < bottom && top < fBottom) {
324 if (fBottom > bottom) fBottom = bottom;
335 a.fTop < b.fBottom && b.fTop < a.fBottom;
345 a.fTop < b.fBottom && b.fTop < a.fBottom;
359 this->join(r.fLeft, r.fTop, r.fRight, r.fBottom);
378 SkScalar fLeft, fTop, fRight, fBottom;
422 SkIntToScalar(irect.fBottom));
431 SkIntToScalar(irect.fBottom));
438 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
443 SK_ScalarMax == fBottom; }
455 accum *= fBottom;
470 SkScalar bottom() const { return fBottom; }
472 SkScalar height() const { return fBottom - fTop; }
474 SkScalar centerY() const { return SkScalarHalf(fTop + fBottom); }
497 fBottom = SkIntToScalar(src.fBottom);
504 fBottom = bottom;
518 fBottom = SkIntToScalar(bottom);
528 fBottom = SkIntToScalar(height);
558 fBottom = SkMaxScalar(p0.fY, p1.fY);
565 fBottom = y + height;
572 fBottom = height;
580 fRight = fBottom = SK_ScalarMax;
589 fRight = fBottom = SK_ScalarMin;
596 return MakeLTRB(fLeft + dx, fTop + dy, fRight + dx, fBottom + dy);
603 return MakeLTRB(fLeft + dx, fTop + dy, fRight - dx, fBottom - dy);
613 fBottom += dy;
625 fBottom += newY - fTop;
639 fBottom -= dy;
670 fLeft < fRight && fTop < fBottom &&
673 fTop < bottom && top < fBottom;
688 a.fTop < b.fBottom && b.fTop < a.fBottom;
703 this->join(r.fLeft, r.fTop, r.fRight, r.fBottom);
710 * following will be true: fLeft <= x <= fRight && fTop <= y <= fBottom.
714 * contains(x,y) -> fLeft <= x < fRight && fTop <= y < fBottom. Also note
721 fBottom = SkMaxScalar(y, fBottom);
747 fRight >= r.fRight && fBottom >= r.fBottom;
757 SkScalarRoundToInt(fRight), SkScalarRoundToInt(fBottom));
775 SkDScalarRoundToInt(fRight), SkDScalarRoundToInt(fBottom));
785 SkScalarCeilToInt(fRight), SkScalarCeilToInt(fBottom));
797 SkScalarCeilToScalar(fBottom));
809 SkScalarFloorToInt(fRight), SkScalarFloorToInt(fBottom));
841 SkDebugf("{ l: %f, t: %f, r: %f, b: %f }", fLeft, fTop, fRight, fBottom);