Lines Matching refs:newX
390 /** Offsets SkIRect so that fLeft equals newX, and fTop equals newY. width and height
393 @param newX stored in fLeft, preserving width()
396 void offsetTo(int32_t newX, int32_t newY) {
397 fRight = Sk64_pin_to_s32((int64_t)fRight + newX - fLeft);
399 fLeft = newX;
1047 /** Offsets SkRect so that fLeft equals newX, and fTop equals newY. width and height
1050 @param newX stored in fLeft, preserving width()
1053 void offsetTo(SkScalar newX, SkScalar newY) {
1054 fRight += newX - fLeft;
1056 fLeft = newX;