Searched refs:capture_top (Results 1 – 8 of 8) sorted by relevance
/third_party/pcre2/pcre2/src/ |
D | pcre2grep.c | 2183 PCRE2_SIZE *ovector, PCRE2_SIZE capture_top) in display_output_text() argument 2205 if (value < capture_top) in display_output_text() 2295 PCRE2_SIZE capture_top = calloutptr->capture_top; in pcre2grep_callout() local 2322 (void)display_output_text(string, TRUE, subject, ovector, capture_top); in pcre2grep_callout() 2349 if (value < capture_top) in pcre2grep_callout() 2416 if (value < capture_top) in pcre2grep_callout()
|
D | pcre2.h.generic | 520 uint32_t capture_top; /* Max current capture */ \
|
D | pcre2.h.in | 520 uint32_t capture_top; /* Max current capture */ \
|
D | pcre2_jit_compile.c | 9696 sljit_u32 oveccount, capture_top; in do_callout_jit() local 9705 oveccount = callout_block->capture_top; in do_callout_jit() 9719 callout_block->capture_top = 1; in do_callout_jit() 9726 capture_top = 1; in do_callout_jit() 9731 capture_top++; in do_callout_jit() 9737 callout_block->capture_top = capture_top; in do_callout_jit() 9773 OP1(SLJIT_MOV_U32, SLJIT_MEM1(STACK_TOP), CALLOUT_ARG_OFFSET(capture_top), SLJIT_IMM, common->re->t… in compile_callout_matchingpath()
|
D | pcre2_dfa_match.c | 3438 cb.capture_top = 1; /* No capture support */ in pcre2_dfa_match()
|
D | pcre2_match.c | 297 cb->capture_top = (uint32_t)Foffset_top/2 + 1; in do_callout()
|
D | pcre2test.c | 6306 for (i = 2; i < cb->capture_top * 2; i += 2) in callout_function()
|
/third_party/pcre2/pcre2/doc/ |
D | pcre2.txt | 4660 uint32_t capture_top; 4726 tured substring, and the capture_top field contains one more than the 4729 value of capture_top is 1. The values of these fields do not always 4731 ((a)(b))(?C2) is taken, capture_last is 1 but capture_top is 4. 4733 The contents of ovector[2] to ovector[<capture_top>*2-1] can be in- 4738 captured but whose numbers are less than capture_top also have both of 4746 support substring capturing. The value of capture_top is always 1 and 5779 7. Callouts are supported, but the value of the capture_top field is
|