Home | History | Annotate | Download | only in regex

Lines Matching refs:cflags

149 regcomp(regex_t *preg, const char *pattern, int cflags)
162 cflags = GOODFLAGS(cflags);
163 if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
166 if (cflags&REG_PEND) {
200 g->cflags = cflags;
215 if (cflags&REG_EXTENDED)
217 else if (cflags&REG_NOSPEC)
354 if (p->g->cflags&REG_NEWLINE)
509 if (p->g->cflags&REG_NEWLINE)
664 if (p->g->cflags&REG_ICASE) {
685 if (p->g->cflags&REG_NEWLINE)
902 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)