Lines Matching refs:left
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);
22 if (left < fLeft) fLeft = left;
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)
138 if (fLeft < left) fLeft = left;
167 void SkRect::join(SkScalar left, SkScalar top, SkScalar right,
170 if (left >= right || top >= bottom) {
176 this->set(left, top, right, bottom);
178 if (left < fLeft) fLeft = left;