Lines Matching refs:newY
390 /** Offsets SkIRect so that fLeft equals newX, and fTop equals newY. width and height
394 @param newY stored in fTop, preserving height()
396 void offsetTo(int32_t newX, int32_t newY) {
398 fBottom = Sk64_pin_to_s32((int64_t)fBottom + newY - fTop);
400 fTop = newY;
1047 /** Offsets SkRect so that fLeft equals newX, and fTop equals newY. width and height
1051 @param newY stored in fTop, preserving height()
1053 void offsetTo(SkScalar newX, SkScalar newY) {
1055 fBottom += newY - fTop;
1057 fTop = newY;