Lines Matching refs:char_bounds

3194     RectF rc, char_bounds, bounds;  in test_string_functions()  local
3272 …status = GdipMeasureString(graphics, teststring, 1, font, &rc, NULL, &char_bounds, &codepointsfitt… in test_string_functions()
3274 expectf(0.0, char_bounds.X); in test_string_functions()
3275 expectf(0.0, char_bounds.Y); in test_string_functions()
3276 ok(char_bounds.Width > 0, "got %0.2f\n", bounds.Width); in test_string_functions()
3277 ok(char_bounds.Height > 0, "got %0.2f\n", bounds.Height); in test_string_functions()
3285 …ok(bounds.Width > char_bounds.Width, "got %0.2f, expected at least %0.2f\n", bounds.Width, char_bo… in test_string_functions()
3286 expectf(char_bounds.Height, bounds.Height); in test_string_functions()
3289 char_width = bounds.Width - char_bounds.Width; in test_string_functions()
3295 ok(bounds.Width > char_bounds.Width + char_width * 2, "got %0.2f, expected at least %0.2f\n", in test_string_functions()
3296 bounds.Width, char_bounds.Width + char_width * 2); in test_string_functions()
3297 …ok(bounds.Height > char_bounds.Height, "got %0.2f, expected at least %0.2f\n", bounds.Height, char… in test_string_functions()
3300 char_height = bounds.Height - char_bounds.Height; in test_string_functions()
3320 rc.Width = char_bounds.Width + char_width * 2.1; in test_string_functions()
3326 expectf_(char_bounds.Width + char_width, bounds.Width, 0.01); in test_string_functions()
3327 expectf_(char_bounds.Height + char_height * 2, bounds.Height, 0.01); in test_string_functions()
3332 rc.Width = char_bounds.Width + char_width * 1.7; in test_string_functions()
3338 expectf_(char_bounds.Width + char_width, bounds.Width, 0.01); in test_string_functions()
3339 expectf_(char_bounds.Height + char_height * 2, bounds.Height, 0.01); in test_string_functions()
3344 rc.Width = char_bounds.Width + char_width * 0.8; in test_string_functions()
3350 expectf_(char_bounds.Width, bounds.Width, 0.01); in test_string_functions()
3351 expectf_(char_bounds.Height + char_height * 3, bounds.Height, 0.05); in test_string_functions()
3440 rc.Width = char_bounds.Width + char_width * 2.1; in test_string_functions()
3441 rc.Height = char_bounds.Height + char_height * 0.5; in test_string_functions()