Searched defs:terminator (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/lib/libast/common/regex/
H A Dregcomp.c128 int terminator; /* pattern terminator */ member in struct:Cenv_s
933 if (c == 0 || c == env->delimiter || c == env->terminator)
973 if (!(c = *(env->cursor + 1)) || c == env->terminator)
1007 if (env->type == BRE && (*(env->cursor + 1) == 0 || *(env->cursor + 1) == env->delimiter || *(env->cursor + 1) == env->terminator || *(env->cursor + 1) == '\\' && *(env->cursor + 2) == ')') || (env->flags & REG_MULTIPLE) && *(env->cursor + 1) == '\n')
1205 if (*env->cursor == 0 || *(env->cursor + 1) == 0 || *env->cursor == env->terminator || *(env->cursor + 1) == env->terminator || (env->flags & REG_ESCAPE) && (*env->cursor == env->delimiter || *env->cursor != '\\' && *(env->cursor + 1) == env->delimiter))
1216 if (!(c = *env->cursor) || c == env->terminator || c == env->delimiter && (env->flags & REG_ESCAPE))
1388 if (*env->cursor == env->terminator || *env->cursor == env->delimiter && (env->flags & REG_ESCAPE))
1484 if ((c = *env->cursor) == 0 || c == env->terminator || (en
[all...]

Completed in 26 milliseconds