Home | History | Annotate | Download | only in src

Lines Matching refs:pattern

13 process each code unit as a separate character, but if the pattern begins with
72 PCRE2_SPTR pattern; /* PCRE2_SPTR is a pointer to unsigned code units of */
115 /* After the options, we require exactly two arguments, which are the pattern,
124 /* As pattern and subject are char arguments, they can be straightforwardly
127 pattern = (PCRE2_SPTR)argv[i];
133 * Now we are going to compile the regular expression pattern, and handle *
138 pattern, /* the pattern */
139 PCRE2_ZERO_TERMINATED, /* indicates pattern is zero-terminated */
159 * pattern match against the subject string. This does just ONE match. If *
165 the number of capturing parentheses in the pattern. */
170 re, /* the compiled pattern */
191 pcre2_code_free(re); /* data and the compiled pattern. */
227 * compiled a pattern, and performed a single match. The code that follows *
233 we have to extract the count of named parentheses from the pattern. */
236 re, /* the compiled pattern */
249 re, /* the compiled pattern */
254 re, /* the compiled pattern */
293 * In UTF-8 mode, which can be set by (*UTF) in the pattern, this may be *
305 pcre2_code_free(re); /* for the match data and the pattern. */
344 re, /* the compiled pattern */