Lines Matching refs:codepoint
246 bool next (hb_codepoint_t *codepoint) const in next()
249 return s.next (codepoint); in next()
251 auto old = *codepoint; in next()
254 *codepoint = INVALID; in next()
262 *codepoint = old + 1; in next()
269 *codepoint = v + 1; in next()
270 return *codepoint != INVALID; in next()
272 bool previous (hb_codepoint_t *codepoint) const in previous()
275 return s.previous (codepoint); in previous()
277 auto old = *codepoint; in previous()
280 *codepoint = INVALID; in previous()
289 *codepoint = old - 1; in previous()
296 *codepoint = v - 1; in previous()
297 return *codepoint != INVALID; in previous()
332 unsigned int next_many (hb_codepoint_t codepoint, in next_many()
336 return inverted ? s.next_many_inverted (codepoint, out, size) in next_many()
337 : s.next_many (codepoint, out, size); in next_many()