Home | History | Annotate | Download | only in api

Lines Matching refs:hb_tag_from_string

118   g_assert_cmphex (hb_tag_from_string ("aBcDe", -1), ==, 0x61426344);
119 g_assert_cmphex (hb_tag_from_string ("aBcD", -1), ==, 0x61426344);
120 g_assert_cmphex (hb_tag_from_string ("aBc", -1), ==, 0x61426320);
121 g_assert_cmphex (hb_tag_from_string ("aB", -1), ==, 0x61422020);
122 g_assert_cmphex (hb_tag_from_string ("a", -1), ==, 0x61202020);
123 g_assert_cmphex (hb_tag_from_string ("aBcDe", 1), ==, 0x61202020);
124 g_assert_cmphex (hb_tag_from_string ("aBcDe", 2), ==, 0x61422020);
125 g_assert_cmphex (hb_tag_from_string ("aBcDe", 3), ==, 0x61426320);
126 g_assert_cmphex (hb_tag_from_string ("aBcDe", 4), ==, 0x61426344);
127 g_assert_cmphex (hb_tag_from_string ("aBcDe", 4), ==, 0x61426344);
129 g_assert_cmphex (hb_tag_from_string ("", -1), ==, HB_TAG_NONE);
130 g_assert_cmphex (hb_tag_from_string ("x", 0), ==, HB_TAG_NONE);
131 g_assert_cmphex (hb_tag_from_string (NULL, -1), ==, HB_TAG_NONE);