Home
last modified time | relevance | path

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

/titanic_44/usr/src/lib/libc/port/locale/
H A Dregexec.c207 #define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND)) in regexec()
209 #define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL)) in regexec()
H A Dengine.c613 if ((sp == m->endp && !(m->eflags&REG_NOTEOL)) || in backref()
629 if (((sp == m->endp && !(m->eflags&REG_NOTEOL)) || in backref()
807 (c == OUT && !(m->eflags&REG_NOTEOL))) { in fast()
906 (c == OUT && !(m->eflags&REG_NOTEOL))) { in slow()
/titanic_44/usr/src/head/
H A Dregex.h100 #define REG_NOTEOL 0x400 /* string has no EOL */ macro
/titanic_44/usr/src/lib/libast/common/include/
H A Dregex.h80 #define REG_NOTEOL 0x00000080 /* $ is not a special char */ macro
/titanic_44/usr/src/lib/libast/amd64/include/ast/
H A Dregex.h62 #define REG_NOTEOL 0x00000080 /* $ is not a special char */ macro
/titanic_44/usr/src/lib/libast/sparcv9/include/ast/
H A Dregex.h62 #define REG_NOTEOL 0x00000080 /* $ is not a special char */ macro
/titanic_44/usr/src/lib/libast/i386/include/ast/
H A Dregex.h62 #define REG_NOTEOL 0x00000080 /* $ is not a special char */ macro
/titanic_44/usr/src/lib/libast/sparc/include/ast/
H A Dregex.h62 #define REG_NOTEOL 0x00000080 /* $ is not a special char */ macro
/titanic_44/usr/src/lib/libast/common/regex/
H A Dreglib.h80 #define REG_EXEC (REG_ADVANCE|REG_INVERT|REG_NOTBOL|REG_NOTEOL|REG_STARTEND)
H A Dregnexec.c1176 if ((!(rex->flags & REG_NEWLINE) || *s != '\n') && ((env->flags & REG_NOTEOL) || s < env->end)) in parse()