HomeSort by: relevance | last modified time | path
    Searched refs:REG_NEWLINE (Results 1 - 25 of 62) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/Support/
regex_impl.h 60 #define REG_NEWLINE 0010
regengine.inc 523 (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) ||
Regex.cpp 36 flags |= REG_NEWLINE;
  /src/external/bsd/nvi/dist/regex/
regex.h 70 #define REG_NEWLINE 0010
engine.c 545 (m->g->cflags&REG_NEWLINE)) )
553 (m->g->cflags&REG_NEWLINE)) )
561 (m->g->cflags&REG_NEWLINE)) ||
572 (m->g->cflags&REG_NEWLINE)) ||
743 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
748 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
832 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
837 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
  /src/include/
regex.h 101 #define REG_NEWLINE 0010
  /src/lib/libform/
type_regex.c 67 (REG_EXTENDED | REG_NOSUB | REG_NEWLINE))) != 0) {
  /src/external/bsd/tre/dist/tests/
randtest.c 63 flags < (REG_EXTENDED | REG_ICASE | REG_NEWLINE | REG_NOSUB);
retest.c 1139 * Test anchors and their behaviour with the REG_NEWLINE compilation
1176 /* If REG_NEWLINE is used, `^' matches the empty string immediately after
1178 Similarly, if REG_NEWLINE is used, `$' matches the empty string
1180 test_comp("^abc", REG_NEWLINE, 0);
1187 test_comp("abc$", REG_NEWLINE, 0);
1194 test_comp("^abc$", REG_NEWLINE, 0);
1248 test_comp("x$\n^y", REG_EXTENDED | REG_NEWLINE, 0);
1254 test_comp("^$", REG_NEWLINE, 0);
1259 /* REG_NEWLINE causes `.' not to match newlines. */
1262 test_comp(".*", REG_NEWLINE, 0)
    [all...]
  /src/external/bsd/tre/dist/include/tre/
tre.h 100 #define REG_NEWLINE (REG_ICASE << 1)
101 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
regex.h 274 #define REG_NEWLINE (REG_ICASE << 1)
278 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/gpl3/binutils/dist/include/
xregex2.h 270 #define REG_NEWLINE (REG_ICASE << 1)
274 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/gpl3/binutils.old/dist/include/
xregex2.h 270 #define REG_NEWLINE (REG_ICASE << 1)
274 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/gpl3/gcc/dist/fixincludes/
fixlib.c 182 REG_EXTENDED|REG_NEWLINE produces identical regex syntax/semantics
191 flags = (match ? REG_EXTENDED|REG_NEWLINE
192 : REG_EXTENDED|REG_NEWLINE|REG_NOSUB);
  /src/external/gpl3/gcc/dist/include/
xregex2.h 270 #define REG_NEWLINE (REG_ICASE << 1)
274 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/gpl3/gcc.old/dist/fixincludes/
fixlib.c 182 REG_EXTENDED|REG_NEWLINE produces identical regex syntax/semantics
191 flags = (match ? REG_EXTENDED|REG_NEWLINE
192 : REG_EXTENDED|REG_NEWLINE|REG_NOSUB);
  /src/external/gpl3/gcc.old/dist/include/
xregex2.h 270 #define REG_NEWLINE (REG_ICASE << 1)
274 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/gpl3/gdb.old/dist/include/
xregex2.h 270 #define REG_NEWLINE (REG_ICASE << 1)
274 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/gpl3/gdb/dist/include/
xregex2.h 270 #define REG_NEWLINE (REG_ICASE << 1)
274 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/bsd/tre/dist/lib/
tre.h 108 #define REG_NEWLINE (REG_ICASE << 1)
109 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/gpl2/diffutils/dist/lib/posix/
regex.h 267 #define REG_NEWLINE (REG_ICASE << 1)
271 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/external/gpl2/grep/dist/lib/posix/
regex.h 271 #define REG_NEWLINE (REG_ICASE << 1)
275 #define REG_NOSUB (REG_NEWLINE << 1)
  /src/usr.bin/nl/
nl.c 382 &argstr[1], REG_NEWLINE|REG_NOSUB)) != 0) {
  /src/lib/libc/regex/
engine.c 631 (m->g->cflags&REG_NEWLINE)) || \
715 *(sp-1) == '\n' && (m->g->cflags&REG_NEWLINE)))
723 (m->g->cflags&REG_NEWLINE)) )
933 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
938 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
  /src/external/gpl2/xcvs/dist/lib/
regex.h 329 #define REG_NEWLINE (1 << 2)

Completed in 34 milliseconds

1 2 3