Lines Matching refs:right
12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) {
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
24 if (right > fRight) fRight = right;
133 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right,
135 if (left < right && top < bottom && !this->isEmpty() && // check for empties
136 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
140 if (fRight > right) fRight = right;
167 void SkRect::join(SkScalar left, SkScalar top, SkScalar right,
170 if (left >= right || top >= bottom) {
176 this->set(left, top, right, bottom);
180 if (right > fRight) fRight = right;