• Home
  • Raw
  • Download

Lines Matching refs:capture_id

1755     PCRE2_SIZE capture_id = 0;  in syntax_check_output_text()  local
1782 if (capture_id <= 65535) in syntax_check_output_text()
1783 capture_id = capture_id * 10 + (*string - '0'); in syntax_check_output_text()
1900 PCRE2_SIZE capture_id = 0; in display_output_text() local
1918 if (capture_id <= 65535) in display_output_text()
1919 capture_id = capture_id * 10 + (*string - '0'); in display_output_text()
1931 if (capture_id < capture_top) in display_output_text()
1934 capture_id *= 2; in display_output_text()
1936 capturesize = ovector[capture_id + 1] - ovector[capture_id]; in display_output_text()
1939 print_match(subject + ovector[capture_id], capturesize); in display_output_text()
2109 PCRE2_SIZE capture_id = 0; in pcre2grep_callout() local
2122 if (capture_id <= 65535) in pcre2grep_callout()
2123 capture_id = capture_id * 10 + (*string - '0'); in pcre2grep_callout()
2147 if (capture_id <= 65535) in pcre2grep_callout()
2148 capture_id = capture_id * 10 + (*string - '0'); in pcre2grep_callout()
2162 if (capture_id > 0) in pcre2grep_callout()
2164 if (capture_id < capture_top) in pcre2grep_callout()
2166 capture_id *= 2; in pcre2grep_callout()
2167 argslen += ovector[capture_id + 1] - ovector[capture_id]; in pcre2grep_callout()
2212 PCRE2_SIZE capture_id = 0; in pcre2grep_callout() local
2219 if (capture_id <= 65535) in pcre2grep_callout()
2220 capture_id = capture_id * 10 + (*string - '0'); in pcre2grep_callout()
2239 if (capture_id <= 65535) in pcre2grep_callout()
2240 capture_id = capture_id * 10 + (*string - '0'); in pcre2grep_callout()
2248 if (capture_id < capture_top) in pcre2grep_callout()
2251 capture_id *= 2; in pcre2grep_callout()
2253 capturesize = ovector[capture_id + 1] - ovector[capture_id]; in pcre2grep_callout()
2254 memcpy(argsptr, subject + ovector[capture_id], capturesize); in pcre2grep_callout()