Home
last modified time | relevance | path

Searched refs:REG_NOTEOL (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/regex/
H A Dregexec.c204 #define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND)) in regexec()
206 #define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL)) in regexec()
H A Dengine.c647 if ((sp == m->endp && !(m->eflags&REG_NOTEOL)) || in backref()
661 if (((sp == m->endp && !(m->eflags&REG_NOTEOL)) || in backref()
843 (c == OUT && !(m->eflags&REG_NOTEOL))) { in walk()
/illumos-gate/usr/src/head/
H A Dregex.h96 #define REG_NOTEOL 0x00400 /* string has no EOL */ macro
/illumos-gate/usr/src/contrib/ast/src/lib/libast/include/
H A Dregex.h82 #define REG_NOTEOL 0x00000080 /* $ is not a special char */ macro
/illumos-gate/usr/src/test/libc-tests/tests/regex/
H A Dtestregex.c384 #ifndef REG_NOTEOL
462 #ifndef REG_NOTEOL
463 #define REG_NOTEOL NOTEST macro
1618 eflags |= REG_NOTEOL; in main()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/regex/
H A Dreglib.h80 #define REG_EXEC (REG_ADVANCE|REG_INVERT|REG_NOTBOL|REG_NOTEOL|REG_STARTEND)
H A Dregnexec.c1175 if ((!(rex->flags & REG_NEWLINE) || *s != '\n') && ((env->flags & REG_NOTEOL) || s < env->end)) in parse()