Lines Matching defs:fRight
17 int16_t fLeft, fTop, fRight, fBottom;
43 int width() const { return fRight - fLeft; }
46 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
53 fRight = right;
60 fRight = SkToS16(r.fRight);
67 fRight += dx;
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;
135 if (clippedSrcRect->fRight > srcSize.width()) {
136 clippedSrcRect->fRight = srcSize.width();
139 clippedSrcRect->fRight = clippedSrcRect->fLeft + dstSize.width() - clippedDstPoint->fX;