Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dsre_lib.h380 DATA_STACK_LOOKUP_AT(state, SRE(match_context), ctx, ctx_pos); \
401 DATA_STACK_LOOKUP_AT(state, SRE(match_context), ctx, ctx_pos); \
470 DATA_ALLOC(SRE(match_context), nextctx); \
500 } SRE(match_context);
513 SRE(match_context)* ctx; in SRE()
514 SRE(match_context)* nextctx; in SRE()
518 DATA_ALLOC(SRE(match_context), ctx); in SRE()
743 DATA_LOOKUP_AT(SRE(match_context), ctx, ctx_pos); in SRE()
831 DATA_LOOKUP_AT(SRE(match_context), ctx, ctx_pos); in SRE()
861 DATA_LOOKUP_AT(SRE(match_context), ctx, ctx_pos); in SRE()
[all …]
/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()