Home | History | Annotate | Download | only in core

Lines Matching refs:fRight

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