Home | History | Annotate | Download | only in src

Lines Matching defs:cflags

4737   int cflags = 0;
4777 if (utf) cflags |= REG_UTF;
4778 if ((pat_patctl.control & CTL_POSIX_NOSUB) != 0) cflags |= REG_NOSUB;
4779 if ((pat_patctl.options & PCRE2_UCP) != 0) cflags |= REG_UCP;
4780 if ((pat_patctl.options & PCRE2_CASELESS) != 0) cflags |= REG_ICASE;
4781 if ((pat_patctl.options & PCRE2_MULTILINE) != 0) cflags |= REG_NEWLINE;
4782 if ((pat_patctl.options & PCRE2_DOTALL) != 0) cflags |= REG_DOTALL;
4783 if ((pat_patctl.options & PCRE2_UNGREEDY) != 0) cflags |= REG_UNGREEDY;
4785 rc = regcomp(&preg, (char *)pbuffer8, cflags);
4829 preg.re_cflags != cflags)