Home | History | Annotate | Download | only in api

Lines Matching defs:last

241   hb_codepoint_t next, first, last;
274 first = last = HB_SET_VALUE_INVALID;
275 g_assert (hb_set_next_range (s, &first, &last));
277 g_assert_cmpint (last, ==, 6);
278 g_assert (hb_set_next_range (s, &first, &last));
280 g_assert_cmpint (last, ==, 15);
281 g_assert (hb_set_next_range (s, &first, &last));
283 g_assert_cmpint (last, ==, 1100);
284 g_assert (hb_set_next_range (s, &first, &last));
286 g_assert_cmpint (last, ==, 1200);
287 g_assert (hb_set_next_range (s, &first, &last));
289 g_assert_cmpint (last, ==, 20005);
290 g_assert (!hb_set_next_range (s, &first, &last));
292 g_assert_cmpint (last, ==, HB_SET_VALUE_INVALID);