Lines Matching refs:fBottom
17 int16_t fLeft, fTop, fRight, fBottom;
44 int height() const { return fBottom - fTop; }
46 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
54 fBottom = bottom;
61 fBottom = SkToS16(r.fBottom);
68 fBottom += dy;
76 SkASSERT(!a.isFinite() || (a.fLeft <= a.fRight && a.fTop <= a.fBottom));
77 SkASSERT(!b.isFinite() || (b.fLeft <= b.fRight && b.fTop <= b.fBottom));
78 return a.fRight > b.fLeft && a.fBottom > b.fTop && b.fRight > a.fLeft && b.fBottom > a.fTop;
85 SkASSERT(!a.isFinite() || (a.fLeft <= a.fRight && a.fTop <= a.fBottom));
86 SkASSERT(!b.isFinite() || (b.fLeft <= b.fRight && b.fTop <= b.fBottom));
87 return a.fRight >= b.fLeft && a.fBottom >= b.fTop && b.fRight >= a.fLeft && b.fBottom >= a.fTop;
143 if (clippedSrcRect->fBottom > srcSize.height()) {
144 clippedSrcRect->fBottom = srcSize.height();
147 clippedSrcRect->fBottom = clippedSrcRect->fTop + dstSize.height() - clippedDstPoint->fY;