Lines Matching refs:HB_DIRECTION_INVALID
53 g_assert_cmpint ((signed) HB_DIRECTION_INVALID, ==, 0); in test_types_direction()
60 g_assert (!HB_DIRECTION_IS_HORIZONTAL (HB_DIRECTION_INVALID)); in test_types_direction()
66 g_assert (!HB_DIRECTION_IS_VERTICAL (HB_DIRECTION_INVALID)); in test_types_direction()
72 g_assert (!HB_DIRECTION_IS_FORWARD (HB_DIRECTION_INVALID)); in test_types_direction()
78 g_assert (!HB_DIRECTION_IS_BACKWARD (HB_DIRECTION_INVALID)); in test_types_direction()
84 g_assert (!HB_DIRECTION_IS_VALID (HB_DIRECTION_INVALID)); in test_types_direction()
93 g_assert_cmpint (HB_DIRECTION_INVALID, ==, hb_direction_from_string (NULL, -1)); in test_types_direction()
94 g_assert_cmpint (HB_DIRECTION_INVALID, ==, hb_direction_from_string ("", -1)); in test_types_direction()
95 g_assert_cmpint (HB_DIRECTION_INVALID, ==, hb_direction_from_string ("t", 0)); in test_types_direction()
96 g_assert_cmpint (HB_DIRECTION_INVALID, ==, hb_direction_from_string ("x", -1)); in test_types_direction()
107 g_assert (0 == strcmp ("invalid", hb_direction_to_string (HB_DIRECTION_INVALID))); in test_types_direction()
175 …ssert_cmpint (hb_script_get_horizontal_direction (HB_SCRIPT_OLD_ITALIC), ==, HB_DIRECTION_INVALID); in test_types_script()