Searched refs:REG_NEWLINE (Results 1 - 25 of 41) sorted by relevance

12

/netbsd-6-1-5-RELEASE/dist/nvi/regex/
H A Dregex.h71 #define REG_NEWLINE 0010 macro
H A Dengine.c540 (m->g->cflags&REG_NEWLINE)) )
548 (m->g->cflags&REG_NEWLINE)) )
556 (m->g->cflags&REG_NEWLINE)) ||
567 (m->g->cflags&REG_NEWLINE)) ||
738 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
743 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
827 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
832 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
/netbsd-6-1-5-RELEASE/include/
H A Dregex.h100 #define REG_NEWLINE 0010 macro
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/fixincludes/
H A Dfixlib.c182 REG_EXTENDED|REG_NEWLINE produces identical regex syntax/semantics
191 flags = (match ? REG_EXTENDED|REG_NEWLINE
192 : REG_EXTENDED|REG_NEWLINE|REG_NOSUB);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/fixincludes/
H A Dfixlib.c183 REG_EXTENDED|REG_NEWLINE produces identical regex syntax/semantics
192 flags = (match ? REG_EXTENDED|REG_NEWLINE
193 : REG_EXTENDED|REG_NEWLINE|REG_NOSUB);
/netbsd-6-1-5-RELEASE/external/bsd/tre/dist/tests/
H A Drandtest.c63 flags < (REG_EXTENDED | REG_ICASE | REG_NEWLINE | REG_NOSUB);
H A Dretest.c1139 * 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,
[all...]
/netbsd-6-1-5-RELEASE/lib/libform/
H A Dtype_regex.c67 (REG_EXTENDED | REG_NOSUB | REG_NEWLINE))) != 0) {
/netbsd-6-1-5-RELEASE/external/bsd/tre/dist/lib/
H A Dtre.h107 #define REG_NEWLINE (REG_ICASE << 1)
108 #define REG_NOSUB (REG_NEWLINE << 1)
H A Dtre-match-parallel.c110 int reg_newline = tnfa->cflags & REG_NEWLINE;
H A Dtre-parse.c1244 new_cflags |= REG_NEWLINE;
1246 new_cflags &= ~REG_NEWLINE;
1552 if (ctx->cflags & REG_NEWLINE)
H A Dtre-match-backtrack.c201 int reg_newline = tnfa->cflags & REG_NEWLINE;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/include/
H A Dxregex2.h271 #define REG_NEWLINE (REG_ICASE << 1)
275 #define REG_NOSUB (REG_NEWLINE << 1)
269 #define REG_NEWLINE macro
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/include/
H A Dxregex2.h271 #define REG_NEWLINE (REG_ICASE << 1)
275 #define REG_NOSUB (REG_NEWLINE << 1)
269 #define REG_NEWLINE macro
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/include/
H A Dxregex2.h271 #define REG_NEWLINE (REG_ICASE << 1)
275 #define REG_NOSUB (REG_NEWLINE << 1)
269 #define REG_NEWLINE macro
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/include/
H A Dxregex2.h271 #define REG_NEWLINE (REG_ICASE << 1)
275 #define REG_NOSUB (REG_NEWLINE << 1)
269 #define REG_NEWLINE macro
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/libgrep/
H A Dregex.h274 #define REG_NEWLINE (REG_ICASE << 1)
278 #define REG_NOSUB (REG_NEWLINE << 1)
272 #define REG_NEWLINE macro
/netbsd-6-1-5-RELEASE/gnu/dist/grep/lib/posix/
H A Dregex.h271 #define REG_NEWLINE (REG_ICASE << 1)
275 #define REG_NOSUB (REG_NEWLINE << 1)
269 #define REG_NEWLINE macro
/netbsd-6-1-5-RELEASE/gnu/dist/diffutils/lib/posix/
H A Dregex.h267 #define REG_NEWLINE (REG_ICASE << 1)
271 #define REG_NOSUB (REG_NEWLINE << 1)
265 #define REG_NEWLINE macro
/netbsd-6-1-5-RELEASE/lib/libc/regex/
H A Dengine.c611 (m->g->cflags&REG_NEWLINE)) )
619 (m->g->cflags&REG_NEWLINE)) )
627 (m->g->cflags&REG_NEWLINE)) ||
638 (m->g->cflags&REG_NEWLINE)) ||
809 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
814 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
902 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
907 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
/netbsd-6-1-5-RELEASE/usr.bin/nl/
H A Dnl.c380 &argstr[1], REG_NEWLINE|REG_NOSUB)) != 0) {
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dregex.h329 #define REG_NEWLINE (1 << 2)
327 #define REG_NEWLINE macro
/netbsd-6-1-5-RELEASE/external/bsd/tre/dist/python/
H A Dtre-python.c504 { "NEWLINE", REG_NEWLINE },
/netbsd-6-1-5-RELEASE/external/bsd/tre/dist/src/
H A Dagrep.c754 errcode = tre_regcomp(&delim, delim_regexp, REG_EXTENDED | REG_NEWLINE);
/netbsd-6-1-5-RELEASE/tests/lib/libc/regex/
H A Dmain.c356 o |= REG_NEWLINE;

Completed in 361 milliseconds

12