Home
last modified time | relevance | path

Searched refs:REG_NEWLINE (Results 1 – 9 of 9) sorted by relevance

/external/llvm/lib/Support/
Dregex_impl.h60 #define REG_NEWLINE 0010 macro
Dregengine.inc523 (m->g->cflags&REG_NEWLINE)) )
531 (m->g->cflags&REG_NEWLINE)) )
539 (m->g->cflags&REG_NEWLINE)) ||
550 (m->g->cflags&REG_NEWLINE)) ||
712 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
717 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
795 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
800 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
DRegex.cpp29 flags |= REG_NEWLINE; in Regex()
Dregcomp.c371 if (p->g->cflags&REG_NEWLINE) in p_ere_exp()
553 if (p->g->cflags&REG_NEWLINE) in p_simp_re()
729 if (p->g->cflags&REG_NEWLINE) in p_bracket()
/external/pcre/dist/
Dpcreposix.h56 #define REG_NEWLINE 0x0002 /* Maps to PCRE_MULTILINE */ macro
Dpcreposix.c277 if ((cflags & REG_NEWLINE) != 0) options |= PCRE_MULTILINE; in regcomp()
Dpcretest.c3924 if ((options & PCRE_MULTILINE) != 0) cflags |= REG_NEWLINE; in main()
/external/pcre/dist/doc/
Dpcretest.txt574 /m REG_NEWLINE
Dpcre.txt9572 REG_NEWLINE
9576 the defined POSIX behaviour for REG_NEWLINE (see the following sec-
9611 PCRE_MULTILINE has only some of the effects specified for REG_NEWLINE.
9645 . matches newline yes REG_NEWLINE
9646 newline matches [^a] yes REG_NEWLINE
9647 $ matches \n at end no REG_NEWLINE
9648 $ matches \n in middle no REG_NEWLINE
9649 ^ matches \n in middle no REG_NEWLINE
9657 behave exactly as for the REG_NEWLINE action.