Lines Matching defs:cflags
50 LispRecomp(LispBuiltin *builtin, char *pattern, int cflags)
55 if ((code = recomp(regex, pattern, cflags)) != 0) {
80 int cflags = 0;
99 cflags |= RE_NOSPEC;
101 cflags |= RE_ICASE;
103 cflags |= RE_NOSUB;
105 cflags |= RE_NEWLINE;
107 regex = LispRecomp(builtin, THESTR(pattern), cflags);
112 result->data.regex.options = cflags;
127 int code, cflags, eflags;
143 regexp = LispRecomp(builtin, THESTR(regex), cflags = 0);
147 cflags = regex->data.regex.options;
160 if (nmatch && (cflags & RE_NOSUB))