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
DRegex.cpp29 flags |= REG_NEWLINE; in Regex()
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) ||
Dregcomp.c362 if (p->g->cflags&REG_NEWLINE) in p_ere_exp()
517 if (p->g->cflags&REG_NEWLINE) in p_simp_re()
693 if (p->g->cflags&REG_NEWLINE) in p_bracket()
/external/pcre/
Dpcreposix.h56 #define REG_NEWLINE 0x0002 /* Maps to PCRE_MULTILINE */ macro
Dpcreposix.c254 if ((cflags & REG_NEWLINE) != 0) options |= PCRE_MULTILINE; in regcomp()
Dpcretest.c1685 if ((options & PCRE_MULTILINE) != 0) cflags |= REG_NEWLINE; in main()
/external/pcre/doc/
Dpcretest.txt295 /m REG_NEWLINE
Dpcre.txt6868 REG_NEWLINE
6872 the defined POSIX behaviour for REG_NEWLINE (see the following sec-
6907 PCRE_MULTILINE has only some of the effects specified for REG_NEWLINE.
6941 . matches newline yes REG_NEWLINE
6942 newline matches [^a] yes REG_NEWLINE
6943 $ matches \n at end no REG_NEWLINE
6944 $ matches \n in middle no REG_NEWLINE
6945 ^ matches \n in middle no REG_NEWLINE
6953 behave exactly as for the REG_NEWLINE action.