Lines Matching defs:options
69 code points to the compiled expression (for options)
180 options option bits
221 PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data,
260 if ((options & (PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT)) != 0)
278 use_existing_match = ((options & PCRE2_SUBSTITUTE_MATCHED) != 0);
279 replacement_only = ((options & PCRE2_SUBSTITUTE_REPLACEMENT_ONLY) != 0);
346 if (utf && (options & PCRE2_NO_UTF_CHECK) == 0)
357 /* Save the substitute options and remove them from the match options. */
359 suboptions = options & SUBSTITUTE_OPTIONS;
360 options &= ~SUBSTITUTE_OPTIONS;
389 else rc = pcre2_match(code, subject, length, start_offset, options|goptions,
393 if (utf) options |= PCRE2_NO_UTF_CHECK; /* Only need to check once */
436 global options, and continue to the next match. */