Lines Matching refs:fRight
21 int32_t fLeft, fTop, fRight, fBottom; member
55 int right() const { return fRight; } in right()
66 int width() const { return fRight - fLeft; } in width()
77 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; } in isEmpty()
89 SkIsS16(fRight) && SkIsS16(fBottom); in is16Bit()
99 fRight = right; in set()
110 fRight = x + width; in setXYWH()
119 fRight = fBottom = SK_MaxS32; in setLargest()
128 fRight = fBottom = SK_MinS32; in setLargestInverted()
137 fRight += dx; in offset()
152 fRight -= dx; in inset()
157 return l >= fRight || fLeft >= r || t >= fBottom || fTop >= b; in quickReject()
166 return (unsigned)(x - fLeft) < (unsigned)(fRight - fLeft) && in contains()
176 fRight >= right && fBottom >= bottom; in contains()
184 fRight >= r.fRight && fBottom >= r.fBottom; in contains()
195 SkASSERT(fLeft < fRight && fTop < fBottom); in containsNoEmptyCheck()
199 fRight >= right && fBottom >= bottom; in containsNoEmptyCheck()
208 return this->intersect(r.fLeft, r.fTop, r.fRight, r.fBottom); in intersect()
219 a.fLeft < b.fRight && b.fLeft < a.fRight && in intersect()
223 fRight = SkMin32(a.fRight, b.fRight); in intersect()
240 if (a.fLeft < b.fRight && b.fLeft < a.fRight && in intersectNoEmptyCheck()
244 fRight = SkMin32(a.fRight, b.fRight); in intersectNoEmptyCheck()
258 fLeft < right && left < fRight && fTop < bottom && top < fBottom) { in intersect()
261 if (fRight > right) fRight = right; in intersect()
272 a.fLeft < b.fRight && b.fLeft < a.fRight && in Intersects()
287 this->join(r.fLeft, r.fTop, r.fRight, r.fBottom); in join()
306 SkScalar fLeft, fTop, fRight, fBottom; member
341 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; } in isEmpty()
352 float value = fLeft * 0 + fTop * 0 + fRight * 0 + fBottom * 0; in isFinite()
361 (SK_FixedNaN == fRight) | (SK_FixedNaN == fBottom); in isFinite()
368 SkScalar right() const { return fRight; } in right()
370 SkScalar width() const { return fRight - fLeft; } in width()
372 SkScalar centerX() const { return SkScalarHalf(fLeft + fRight); } in centerX()
394 fRight = SkIntToScalar(src.fRight); in set()
401 fRight = right; in set()
415 fRight = SkIntToScalar(right); in iset()
433 fRight = x + width; in setXYWH()
442 fRight = fBottom = SK_ScalarMax; in setLargest()
451 fRight = fBottom = SK_ScalarMin; in setLargestInverted()
460 fRight += dx; in offset()
476 fRight -= dx; in inset()
507 fLeft < fRight && fTop < fBottom && in intersects()
509 fLeft < right && left < fRight && in intersects()
524 a.fLeft < b.fRight && b.fLeft < a.fRight && in Intersects()
540 this->join(r.fLeft, r.fTop, r.fRight, r.fBottom); in join()
556 fRight = SkMaxScalar(x, fRight); in growToInclude()
572 fLeft <= p.fX && p.fX < fRight && fTop <= p.fY && p.fY < fBottom; in contains()
586 fLeft <= x && x < fRight && fTop <= y && y < fBottom; in contains()
596 fRight >= r.fRight && fBottom >= r.fBottom; in contains()
606 SkScalarRound(fRight), SkScalarRound(fBottom)); in round()
616 SkScalarCeil(fRight), SkScalarCeil(fBottom)); in roundOut()
627 SkScalarCeilToScalar(fRight), in roundOut()