Home | History | Annotate | Download | only in api

Lines Matching defs:first

164   hb_codepoint_t next, first, last;
191 first = last = HB_SET_VALUE_INVALID;
192 g_assert (hb_set_next_range (s, &first, &last));
193 g_assert_cmpint (first, ==, 6);
195 g_assert (hb_set_next_range (s, &first, &last));
196 g_assert_cmpint (first, ==, 10);
198 g_assert (hb_set_next_range (s, &first, &last));
199 g_assert_cmpint (first, ==, 20005);
201 g_assert (!hb_set_next_range (s, &first, &last));
202 g_assert_cmpint (first, ==, HB_SET_VALUE_INVALID);