Lines Matching refs:right
11 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) {
13 if (left >= right || top >= bottom) {
19 this->set(left, top, right, bottom);
23 if (right > fRight) fRight = right;
113 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) {
114 CHECK_INTERSECT(left, top, right, bottom, fLeft, fTop, fRight, fBottom);
129 void SkRect::join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) {
131 if (left >= right || top >= bottom) {
137 this->set(left, top, right, bottom);
141 fRight = SkMaxScalar(fRight, right);