cflags             69 ext/ereg/ereg.c 	int cflags;
cflags            139 ext/ereg/ereg.c static int _php_regcomp(regex_t *preg, const char *pattern, int cflags TSRMLS_DC)
cflags            157 ext/ereg/ereg.c 	   && rc->cflags == cflags) {
cflags            172 ext/ereg/ereg.c 	r = regcomp(preg, pattern, cflags);
cflags            176 ext/ereg/ereg.c 		rcp.cflags = cflags;
cflags            191 ext/ereg/ereg.c 		r = regcomp(preg, pattern, cflags);
cflags            195 ext/ereg/ereg.c 			rcp.cflags = cflags;
cflags             84 ext/ereg/regex/engine.c 	if (g->cflags&REG_NOSUB)
cflags            465 ext/ereg/regex/engine.c 						(m->g->cflags&REG_NEWLINE)) )
cflags            473 ext/ereg/regex/engine.c 						(m->g->cflags&REG_NEWLINE)) )
cflags            481 ext/ereg/regex/engine.c 						(m->g->cflags&REG_NEWLINE)) ||
cflags            492 ext/ereg/regex/engine.c 						(m->g->cflags&REG_NEWLINE)) ||
cflags            658 ext/ereg/regex/engine.c 		if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
cflags            663 ext/ereg/regex/engine.c 		if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
cflags            747 ext/ereg/regex/engine.c 		if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
cflags            752 ext/ereg/regex/engine.c 		if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
cflags             88 ext/ereg/regex/regcomp.c regcomp(preg, pattern, cflags)
cflags             91 ext/ereg/regex/regcomp.c int cflags;
cflags            104 ext/ereg/regex/regcomp.c 	cflags = GOODFLAGS(cflags);
cflags            105 ext/ereg/regex/regcomp.c 	if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
cflags            108 ext/ereg/regex/regcomp.c 	if (cflags&REG_PEND) {
cflags            150 ext/ereg/regex/regcomp.c 	g->cflags = cflags;
cflags            165 ext/ereg/regex/regcomp.c 	if (cflags&REG_EXTENDED)
cflags            167 ext/ereg/regex/regcomp.c 	else if (cflags&REG_NOSPEC)
cflags            309 ext/ereg/regex/regcomp.c 		if (p->g->cflags&REG_NEWLINE)
cflags            471 ext/ereg/regex/regcomp.c 		if (p->g->cflags&REG_NEWLINE)
cflags            623 ext/ereg/regex/regcomp.c 	if (p->g->cflags&REG_ICASE) {
cflags            644 ext/ereg/regex/regcomp.c 		if (p->g->cflags&REG_NEWLINE)
cflags            880 ext/ereg/regex/regcomp.c 	if ((p->g->cflags&REG_ICASE) && isalpha(ch) && othercase(ch) != ch)
cflags            117 ext/ereg/regex/regex2.h 	int cflags;		/* copy of regcomp() cflags argument */
cflags           8812 ext/pcre/pcrelib/pcre_compile.c int cflags = REQ_NONE;
cflags           8841 ext/pcre/pcrelib/pcre_compile.c      if (cflags < 0) { c = d; cflags = dflags; } else if (c != d || cflags != dflags) return 0;
cflags           8853 ext/pcre/pcrelib/pcre_compile.c      if (cflags < 0) { c = scode[1]; cflags = 0; }
cflags           8866 ext/pcre/pcrelib/pcre_compile.c      if (cflags < 0) { c = scode[1]; cflags = REQ_CASELESS; }
cflags           8875 ext/pcre/pcrelib/pcre_compile.c *flags = cflags;
cflags            268 ext/pcre/pcrelib/pcreposix.c regcomp(regex_t *preg, const char *pattern, int cflags)
cflags            276 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_ICASE) != 0)    options |= PCRE_CASELESS;
cflags            277 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_NEWLINE) != 0)  options |= PCRE_MULTILINE;
cflags            278 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_DOTALL) != 0)   options |= PCRE_DOTALL;
cflags            279 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_NOSUB) != 0)    options |= PCRE_NO_AUTO_CAPTURE;
cflags            280 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_UTF8) != 0)     options |= PCRE_UTF8;
cflags            281 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_UCP) != 0)      options |= PCRE_UCP;
cflags            282 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_UNGREEDY) != 0) options |= PCRE_UNGREEDY;