Lines Matching refs:f_rect
108 SkRect f_rect = SkRect::MakeIWH(25, 35);
109 SkDebugf("i_rect width: %d f_rect width:%g\n", i_rect.width(), f_rect.width());
111 f_rect = SkRect::MakeIWH(125000111, 0);
112 SkDebugf("i_rect width: %d f_rect width:%.0f\n", i_rect.width(), f_rect.width());
114 i_rect width: 25 f_rect width:25
115 i_rect width: 125000111 f_rect width:125000112
236 SkRect f_rect = SkRect::Make(i_rect1);
237 f_rect.offset(0.49f, 0.49f);
239 f_rect.round(&i_rect2);
798 SkRect f_rect;
799 f_rect.set(i_rect);
800 … SkDebugf("f_rect: {%g, %g, %g, %g}\n", f_rect.fLeft, f_rect.fTop, f_rect.fRight, f_rect.fBottom);
803 f_rect: {3, 4, 1, 2}