Lines Matching refs:subfont
157 hb_font_t *subfont; in _test_fontfuncs_nil() local
175 subfont = hb_font_create_sub_font (font); in _test_fontfuncs_nil()
176 g_assert (subfont); in _test_fontfuncs_nil()
182 _test_font_nil_funcs (subfont); in _test_fontfuncs_nil()
184 hb_font_destroy (subfont); in _test_fontfuncs_nil()
464 hb_font_t *subfont; in test_font_properties() local
478 subfont = hb_font_create_sub_font (font); in test_font_properties()
479 g_assert (hb_font_get_parent (subfont) == font); in test_font_properties()
480 hb_font_set_parent(subfont, NULL); in test_font_properties()
481 g_assert (hb_font_get_parent (subfont) == hb_font_get_empty()); in test_font_properties()
482 hb_font_set_parent(subfont, font); in test_font_properties()
483 g_assert (hb_font_get_parent (subfont) == font); in test_font_properties()
484 hb_font_set_parent(subfont, NULL); in test_font_properties()
485 hb_font_make_immutable (subfont); in test_font_properties()
486 g_assert (hb_font_get_parent (subfont) == hb_font_get_empty()); in test_font_properties()
487 hb_font_set_parent(subfont, font); in test_font_properties()
488 g_assert (hb_font_get_parent (subfont) == hb_font_get_empty()); in test_font_properties()
489 hb_font_destroy (subfont); in test_font_properties()
562 subfont = hb_font_create_sub_font (font); in test_font_properties()
565 g_assert (hb_font_get_parent (subfont) == font); in test_font_properties()
566 g_assert (hb_font_get_face (subfont) == face); in test_font_properties()
570 hb_font_get_scale (subfont, &x_scale, &y_scale); in test_font_properties()
573 hb_font_set_scale (subfont, 10, 12); in test_font_properties()
575 hb_font_get_scale (subfont, &x_scale, &y_scale); in test_font_properties()
585 hb_font_get_ppem (subfont, &x_ppem, &y_ppem); in test_font_properties()
588 hb_font_set_ppem (subfont, 10, 12); in test_font_properties()
590 hb_font_get_ppem (subfont, &x_ppem, &y_ppem); in test_font_properties()
598 hb_font_destroy (subfont); in test_font_properties()