Lines Matching refs:matcher_t
266 struct matcher_t struct
268 inline matcher_t (void) : in matcher_t() function
358 inline void set_match_func (matcher_t::match_func_t match_func_, in set_match_func()
385 matcher_t::may_skip_t skip = matcher.may_skip (c, info); in next()
386 if (unlikely (skip == matcher_t::SKIP_YES)) in next()
389 matcher_t::may_match_t match = matcher.may_match (info, match_glyph_data); in next()
390 if (match == matcher_t::MATCH_YES || in next()
391 (match == matcher_t::MATCH_MAYBE && in next()
392 skip == matcher_t::SKIP_NO)) in next()
399 if (skip == matcher_t::SKIP_NO) in next()
412 matcher_t::may_skip_t skip = matcher.may_skip (c, info); in prev()
413 if (unlikely (skip == matcher_t::SKIP_YES)) in prev()
416 matcher_t::may_match_t match = matcher.may_match (info, match_glyph_data); in prev()
417 if (match == matcher_t::MATCH_YES || in prev()
418 (match == matcher_t::MATCH_MAYBE && in prev()
419 skip == matcher_t::SKIP_NO)) in prev()
426 if (skip == matcher_t::SKIP_NO) in prev()
435 matcher_t matcher;