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

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Support/
regex_impl.h 86 #define REG_NOTBOL 00001
regexec.c 148 # define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND))
  /src/external/bsd/nvi/dist/regex/
regex.h 96 #define REG_NOTBOL 00001
regexec.c 152 = #define REG_NOTBOL 00001
170 # define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND))
  /src/include/
regex.h 129 #define REG_NOTBOL 00001
  /src/external/bsd/tre/dist/include/tre/
tre.h 110 #define REG_NOTBOL 1
111 #define REG_NOTEOL (REG_NOTBOL << 1)
  /src/external/gpl3/gcc/dist/fixincludes/
fixtests.c 101 REG_NOTBOL means 'base' is not at the beginning of a line, which
105 if (xregexec (name_re, base, 1, match, REG_NOTBOL))
  /src/external/gpl3/gcc.old/dist/fixincludes/
fixtests.c 101 REG_NOTBOL means 'base' is not at the beginning of a line, which
105 if (xregexec (name_re, base, 1, match, REG_NOTBOL))
  /src/external/bsd/tre/dist/tests/
retest.c 1140 * flag and the REG_NOTBOL, REG_NOTEOL execution flags.
1144 If REG_NOTBOL is used, `^' won't match the zero length string. */
1147 test_exec("abcdef", REG_NOTBOL, REG_NOMATCH);
1149 test_exec("xyzabcdef", REG_NOTBOL, REG_NOMATCH);
1151 test_exec("\nabcdef", REG_NOTBOL, REG_NOMATCH);
1165 test_exec("abc", REG_NOTBOL, REG_NOMATCH);
1167 test_exec("abc", REG_NOTBOL | REG_NOTEOL, REG_NOMATCH);
1177 a newline, regardless of whether execution flags contain REG_NOTBOL.
1182 test_exec("abcdef", REG_NOTBOL, REG_NOMATCH);
1184 test_exec("xyzabcdef", REG_NOTBOL, REG_NOMATCH)
    [all...]
  /src/external/bsd/tre/dist/lib/
tre.h 120 #define REG_NOTBOL 1
121 #define REG_NOTEOL (REG_NOTBOL << 1)
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
regex.h 288 #define REG_NOTBOL 1
290 /* Like REG_NOTBOL, except for the end-of-line. */
  /src/external/gpl3/binutils/dist/include/
xregex2.h 284 #define REG_NOTBOL 1
286 /* Like REG_NOTBOL, except for the end-of-line. */
  /src/external/gpl3/binutils.old/dist/include/
xregex2.h 284 #define REG_NOTBOL 1
286 /* Like REG_NOTBOL, except for the end-of-line. */
  /src/external/gpl3/gcc/dist/include/
xregex2.h 284 #define REG_NOTBOL 1
286 /* Like REG_NOTBOL, except for the end-of-line. */
  /src/external/gpl3/gcc.old/dist/include/
xregex2.h 284 #define REG_NOTBOL 1
286 /* Like REG_NOTBOL, except for the end-of-line. */
  /src/external/gpl3/gdb.old/dist/include/
xregex2.h 284 #define REG_NOTBOL 1
286 /* Like REG_NOTBOL, except for the end-of-line. */
  /src/external/gpl3/gdb/dist/include/
xregex2.h 284 #define REG_NOTBOL 1
286 /* Like REG_NOTBOL, except for the end-of-line. */
  /src/external/bsd/nvi/dist/common/
search.c 247 (match[0].rm_so == 0 ? 0 : REG_NOTBOL) | REG_STARTEND);
419 (match[0].rm_so == 0 ? 0 : REG_NOTBOL) |
  /src/lib/libc/regex/
engine.c 626 ((sp == m->beginp && !(m->eflags&REG_NOTBOL)) || \
701 if (sp == m->beginp && (m->eflags & REG_NOTBOL) == 0)
713 if ((sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
906 if (start == m->offp || (start == m->beginp && !(m->eflags&REG_NOTBOL)))
934 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
943 if (lastc == OUT && (m->eflags & REG_NOTBOL) == 0) {
regexec.c 214 = #define REG_NOTBOL 00001
236 # define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND))
  /src/bin/ed/
sub.c 215 && !regexec(pat, txt, SE_MAX, rm, REG_NOTBOL));
  /src/external/gpl2/diffutils/dist/lib/posix/
regex.h 281 #define REG_NOTBOL 1
283 /* Like REG_NOTBOL, except for the end-of-line. */
  /src/external/gpl2/grep/dist/lib/posix/
regex.h 285 #define REG_NOTBOL 1
287 /* Like REG_NOTBOL, except for the end-of-line. */
  /src/usr.bin/sed/
process.c 436 } while (slen >= 0 && regexec_e(re, s, REG_NOTBOL, 0, (size_t)slen));
449 if (!regexec_e(re, s, REG_NOTBOL, 0, (size_t)slen))
  /src/usr.bin/m4/
gnum4.c 345 flags = REG_NOTBOL;
360 flags = REG_NOTBOL;

Completed in 74 milliseconds

1 2