Home
last modified time | relevance | path

Searched refs:should_have_x (Results 1 – 1 of 1) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/test/api/
Dtest-set.c991 hb_bool_t should_have_x; in check_set_operations() local
997 should_have_x = (a_has_x || b_has_x) && !a_is_null; in check_set_operations()
999 has_expected = (hb_set_has (a, x) == should_have_x); in check_set_operations()
1003 should_have_x = (a_has_x && b_has_x) && !a_is_null; in check_set_operations()
1005 has_expected = (hb_set_has (a, x) == should_have_x); in check_set_operations()
1009 should_have_x = (a_has_x && !b_has_x) && !a_is_null; in check_set_operations()
1011 has_expected = (hb_set_has (a, x) == should_have_x); in check_set_operations()
1015 should_have_x = (a_has_x ^ b_has_x) && !a_is_null; in check_set_operations()
1017 has_expected = (hb_set_has (a, x) == should_have_x); in check_set_operations()
1031 should_have_x ? "{13}" : "{} ", in check_set_operations()