Home | History | Annotate | Download | only in core

Lines Matching defs:fRight

28     int32_t fLeft, fTop, fRight, fBottom;
32 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
37 int width() const { return fRight - fLeft; }
54 SkIsS16(fRight) && SkIsS16(fBottom);
64 fRight = right;
74 fRight += dx;
89 fRight -= dx;
99 return (unsigned)(x - fLeft) < (unsigned)(fRight - fLeft) &&
109 fRight >= right && fBottom >= bottom;
117 fRight >= r.fRight && fBottom >= r.fBottom;
128 SkASSERT(fLeft < fRight && fTop < fBottom);
132 fRight >= right && fBottom >= bottom;
141 return this->intersect(r.fLeft, r.fTop, r.fRight, r.fBottom);
152 a.fLeft < b.fRight && b.fLeft < a.fRight &&
156 fRight = SkMin32(a.fRight, b.fRight);
173 if (a.fLeft < b.fRight && b.fLeft < a.fRight &&
177 fRight = SkMin32(a.fRight, b.fRight);
191 fLeft < right && left < fRight && fTop < bottom && top < fBottom) {
194 if (fRight > right) fRight = right;
205 a.fLeft < b.fRight && b.fLeft < a.fRight &&
220 this->join(r.fLeft, r.fTop, r.fRight, r.fBottom);
234 SkScalar fLeft, fTop, fRight, fBottom;
256 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
257 SkScalar width() const { return fRight - fLeft; }
259 SkScalar centerX() const { return SkScalarHalf(fLeft + fRight); }
281 fRight = SkIntToScalar(src.fRight);
288 fRight = right;
298 fRight = SkIntToScalar(right);
314 fRight += dx;
329 fRight -= dx;
352 fLeft < fRight && fTop < fBottom &&
354 fLeft < right && left < fRight &&
362 a.fLeft < b.fRight && b.fLeft < a.fRight &&
377 this->join(r.fLeft, r.fTop, r.fRight, r.fBottom);
388 fLeft <= p.fX && p.fX < fRight &&
400 fLeft <= x && x < fRight &&
410 fRight >= r.fRight && fBottom >= r.fBottom;
418 dst->set(SkScalarRound(fLeft), SkScalarRound(fTop), SkScalarRound(fRight), SkScalarRound(fBottom));
426 dst->set(SkScalarFloor(fLeft), SkScalarFloor(fTop), SkScalarCeil(fRight), SkScalarCeil(fBottom));