Home | History | Annotate | Download | only in regex

Lines Matching defs:eflags

92 	int eflags;
113 static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
150 #define NOTE(str) { if (m->eflags&REG_TRACE) printf("=%s\n", (str)); }
197 == size_t nmatch, regmatch_t pmatch[], int eflags);
204 int eflags)
231 if (eflags&REG_STARTEND) {
288 m->eflags = eflags;
347 if (!g->backrefs && !(m->eflags&REG_BACKR)) {
626 ((sp == m->beginp && !(m->eflags&REG_NOTBOL)) || \
629 (((sp == m->endp && !(m->eflags&REG_NOTEOL)) || \
701 if (sp == m->beginp && (m->eflags & REG_NOTBOL) == 0)
707 if (sp == m->endp && (m->eflags & REG_NOTEOL) == 0)
713 if ((sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
721 if ( (sp == m->endp && !(m->eflags&REG_NOTEOL)) ||
906 if (start == m->offp || (start == m->beginp && !(m->eflags&REG_NOTBOL)))
934 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
939 (c == OUT && !(m->eflags&REG_NOTEOL)) ) {
943 if (lastc == OUT && (m->eflags & REG_NOTBOL) == 0) {
948 if (c == OUT && (m->eflags & REG_NOTEOL) == 0) {
1188 if (!(m->eflags&REG_TRACE))
1225 if (!(m->eflags&REG_TRACE))