Lines Matching refs:match_info
551 GMatchInfo *match_info;
554 match_info->string_len = string_len;
555 match_info->matches = PCRE2_ERROR_NOMATCH;
556 match_info->pos = start_position;
557 - match_info->match_opts = match_options;
558 + match_info->match_opts =
562 &match_info->n_subpatterns);
563 @@ -822,8 +853,8 @@ recalc_match_offsets (GMatchInfo *match_info,
574 @@ -1009,7 +1040,7 @@ g_match_info_next (GMatchInfo *match_info,
578 - opts = map_to_pcre2_match_flags (match_info->regex->match_opts | match_info->match_opts);
579 + opts = match_info->regex->match_opts | match_info->match_opts;
581 enable_jit_with_match_options (match_info->regex, opts);
582 if (match_info->regex->jit_status == JIT_STATUS_ENABLED)
583 @@ -1018,7 +1049,7 @@ g_match_info_next (GMatchInfo *match_info,
584 (PCRE2_SPTR8) match_info->string,
585 match_info->string_len,
586 match_info->pos,
589 match_info->match_data,
590 match_info->match_context);
592 @@ -1028,7 +1059,7 @@ g_match_info_next (GMatchInfo *match_info,
593 (PCRE2_SPTR8) match_info->string,
594 match_info->string_len,
595 match_info->pos,
598 match_info->match_data,
599 match_info->match_context);
878 GMatchInfo **match_info)
883 match_info, NULL);
896 GMatchInfo **match_info)
901 match_info, NULL);