Home | History | Annotate | Download | only in api

Lines Matching defs:script

475   PROPERTY (script, (unsigned int) HB_SCRIPT_UNKNOWN)
608 /* This is cruel: we use script-returning functions to test all properties,
730 script_roundtrip_default (hb_script_t script)
732 return hb_script_from_iso15924_tag (hb_script_to_iso15924_tag (script));
737 script_roundtrip_glib (hb_script_t script)
739 return hb_glib_script_to_script (hb_glib_script_from_script (script));
745 script_roundtrip_icu (hb_script_t script)
747 return hb_icu_script_to_script (hb_icu_script_from_script (script));
761 hb_script_t script = test->value;
763 g_test_message ("Test script roundtrip #%d: %x", i, script);
764 g_assert_cmphex (script, ==, roundtrip_func (script));
768 hb_script_t script = test->value;
770 g_test_message ("Test script roundtrip more #%d: %x", i, script);
771 if (script != roundtrip_func (script)) {
772 g_test_message ("Soft fail: Received %x, expected %x", roundtrip_func (script), script);
780 g_test_message ("Some script roundtrip tests failed. You probably have an old version of one of the libraries used.");