Home
last modified time | relevance | path

Searched refs:match_context (Results 1 – 2 of 2) sorted by relevance

/external/pcre/pcrecpp/
Dpcrecpp.cc316 match_context_ptr match_context = match_context_ptr( in TryMatch() local
319 if (!match_context) in TryMatch()
323 pcre2_set_match_limit(match_context.get(), options_.match_limit()); in TryMatch()
326 pcre2_set_recursion_limit(match_context.get(), in TryMatch()
348 text.size(), startpos, options, match_data.get(), match_context.get()); in TryMatch()
/external/pcre/dist2/src/
Dpcre2grep.c202 static pcre2_match_context *match_context; variable
1480 startoffset, options, match_data, match_context); in match_patterns()
2960 match_context = pcre2_match_context_create(NULL); in main()
2968 pcre2_set_callout(match_context, pcre2grep_callout, NULL); in main()
3306 if (match_limit > 0) pcre2_set_match_limit(match_context, match_limit); in main()
3307 if (recursion_limit > 0) pcre2_set_recursion_limit(match_context, recursion_limit); in main()
3481 pcre2_jit_stack_assign(match_context, NULL, jit_stack); in main()
3580 pcre2_match_context_free(match_context); in main()