Symbol: REG_EXTENDED
lib/libc/regex/regcomp.c
155
if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
lib/libc/regex/regcomp.c
203
if (cflags&REG_EXTENDED)
lib/libform/fty_regex.c
163
(REG_EXTENDED | REG_NOSUB | REG_NEWLINE)))
lib/libkeynote/environment.c
271
if ((i = regcomp(&(en->env_regex), name, REG_EXTENDED)) != 0)
lib/libkeynote/keynote.y
506
if (regcomp(&preg, $3, REG_EXTENDED))
regress/lib/libc/regex/main.c
165
options('c', f[1]) &~ REG_EXTENDED);
regress/lib/libc/regex/main.c
19
int copts = REG_EXTENDED;
regress/lib/libc/regex/main.c
222
char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE";
regress/lib/libc/regex/main.c
331
o &= ~REG_EXTENDED;
regress/lib/libc/regex/main.c
343
o &= ~REG_EXTENDED;
regress/lib/libc/regex/t_exhaust.c
170
e = regcomp(&re, d, i == 6 ? REG_BASIC : REG_EXTENDED);
regress/sys/kern/pledge/generic/manager.c
110
error = regcomp(&regex, pattern, REG_EXTENDED);
sys/dev/microcode/aic7xxx/aicasm_gram.y
1562
retval = regcomp(&marg->arg_regex, regex_pattern, REG_EXTENDED);
sys/dev/pci/drm/radeon/mkregtable.c
205
(&mask_rex, "(0x[0-9a-fA-F]*) *([_a-zA-Z0-9]*)", REG_EXTENDED)) {
usr.bin/cvs/trigger.c
447
if (regcomp(&preg, regex, REG_NOSUB|REG_EXTENDED))
usr.bin/diff/diff.c
232
REG_NEWLINE | REG_EXTENDED)) != 0) {
usr.bin/file/magic-load.c
70
error = regcomp(re, p, REG_EXTENDED|REG_NOSUB);
usr.bin/file/magic-test.c
1019
if (regcomp(&re, ml->test_string, REG_EXTENDED|REG_NEWLINE|flags) != 0)
usr.bin/grep/grep.c
484
cflags |= REG_EXTENDED;
usr.bin/less/pattern.h
13
#define REGCOMP_FLAG REG_EXTENDED
usr.bin/lex/regex.c
41
flex_regcomp(&regex_linedir, REGEXP_LINEDIR, REG_EXTENDED);
usr.bin/lex/regex.c
42
flex_regcomp(&regex_blank_line, REGEXP_BLANK_LINE, REG_EXTENDED);
usr.bin/m4/gnum4.c
474
int mode = REG_EXTENDED;
usr.bin/m4/gnum4.c
518
error = regcomp(&re, source, REG_EXTENDED|REG_NEWLINE);
usr.bin/make/varmodifiers.c
1053
error = regcomp(&p2.re, p->lhs, REG_EXTENDED);
usr.bin/mandoc/mansearch.c
787
REG_EXTENDED | REG_NOSUB | (cs ? 0 : REG_ICASE));
usr.bin/mg/interpreter.c
783
if (regcomp(&regex_buff, r, REG_EXTENDED)) {
usr.bin/mg/re_search.c
472
flags = REG_EXTENDED | REG_ICASE;
usr.bin/mg/re_search.c
474
flags = REG_EXTENDED;
usr.bin/passwd/pwd_check.c
61
REG_EXTENDED|REG_NOSUB,
usr.bin/passwd/pwd_check.c
66
REG_EXTENDED|REG_NOSUB,
usr.bin/passwd/pwd_check.c
71
REG_EXTENDED|REG_NOSUB|REG_ICASE,
usr.bin/passwd/pwd_check.c
76
REG_EXTENDED|REG_NOSUB|REG_ICASE,
usr.bin/passwd/pwd_check.c
81
REG_EXTENDED|REG_NOSUB|REG_ICASE,
usr.bin/pkill/pkill.c
294
if ((rv = regcomp(&reg, *argv, REG_EXTENDED)) != 0) {
usr.bin/rcs/rcsdiff.c
203
REG_NEWLINE | REG_EXTENDED)) != 0) {
usr.bin/sed/compile.c
454
if (p && (eval = regcomp(*repp, re, Eflag ? REG_EXTENDED : 0)) != 0)
usr.bin/sort/sort.c
491
if (regcomp(&re, sregexp, REG_EXTENDED) != 0)
usr.bin/sort/sort.c
644
if (regcomp(&re, sregexp, REG_EXTENDED) != 0)
usr.bin/split/split.c
119
if (regcomp(&rgx, optarg, REG_EXTENDED|REG_NOSUB) != 0)
usr.bin/tmux/format.c
4394
flags = REG_EXTENDED|REG_NOSUB;
usr.bin/tmux/format.c
4414
int flags = REG_EXTENDED;
usr.bin/tmux/window-copy.c
4004
int found = 0, cflags = REG_EXTENDED;
usr.bin/tmux/window-copy.c
4316
int cflags = REG_EXTENDED;
usr.bin/tmux/window.c
1323
if (regcomp(&r, term, flags|REG_EXTENDED) != 0)
usr.bin/vi/ex/ex_subst.c
883
reflags |= REG_EXTENDED;
usr.sbin/smtpd/table.c
491
int cflags = REG_EXTENDED|REG_NOSUB;