Lines Matching refs:subfont
149 hb_font_t *subfont; in _test_fontfuncs_nil() local
167 subfont = hb_font_create_sub_font (font); in _test_fontfuncs_nil()
168 g_assert (subfont); in _test_fontfuncs_nil()
174 _test_font_nil_funcs (subfont); in _test_fontfuncs_nil()
176 hb_font_destroy (subfont); in _test_fontfuncs_nil()
366 hb_font_t *subfont; in test_font_properties() local
445 subfont = hb_font_create_sub_font (font); in test_font_properties()
448 g_assert (hb_font_get_parent (subfont) == font); in test_font_properties()
449 g_assert (hb_font_get_face (subfont) == face); in test_font_properties()
453 hb_font_get_scale (subfont, &x_scale, &y_scale); in test_font_properties()
456 hb_font_set_scale (subfont, 10, 12); in test_font_properties()
458 hb_font_get_scale (subfont, &x_scale, &y_scale); in test_font_properties()
468 hb_font_get_ppem (subfont, &x_ppem, &y_ppem); in test_font_properties()
471 hb_font_set_ppem (subfont, 10, 12); in test_font_properties()
473 hb_font_get_ppem (subfont, &x_ppem, &y_ppem); in test_font_properties()
481 hb_font_destroy (subfont); in test_font_properties()