/freebsd/contrib/netbsd-tests/lib/libc/regex/ |
H A D | t_exhaust.c | 162 { p0, REG_EXTENDED }, 163 { p1, REG_EXTENDED }, 164 { p2, REG_EXTENDED }, 165 { p3, REG_EXTENDED }, 166 { p4, REG_EXTENDED }, 167 { p5, REG_EXTENDED },
|
H A D | main.c | 45 int copts = REG_EXTENDED; 192 options('c', f[1]) &~ REG_EXTENDED); in regress() 243 const char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE"; in try() 347 o &= ~REG_EXTENDED; in options() 359 o &= ~REG_EXTENDED; in options()
|
/freebsd/lib/libc/locale/ |
H A D | rpmatch.c | 39 if (regcomp(&yes, nl_langinfo(YESEXPR), REG_EXTENDED|REG_NOSUB) != 0) in rpmatch() 41 if (regcomp(&no, nl_langinfo(NOEXPR), REG_EXTENDED|REG_NOSUB) != 0) { in rpmatch()
|
/freebsd/contrib/less/ |
H A D | pattern.h | 20 #ifdef REG_EXTENDED 22 #define REGCOMP_FLAG (less_is_more ? 0 : REG_EXTENDED)
|
/freebsd/lib/libc/regex/grot/ |
H A D | main.c | 18 int copts = REG_EXTENDED; 162 options('c', f[1]) &~ REG_EXTENDED); in regress() 214 char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE"; in try() 315 o &= ~REG_EXTENDED; in options() 327 o &= ~REG_EXTENDED; in options()
|
/freebsd/contrib/flex/src/ |
H A D | regex.c | 39 flex_regcomp(®ex_linedir, REGEXP_LINEDIR, REG_EXTENDED); in flex_init_regex() 40 flex_regcomp(®ex_blank_line, REGEXP_BLANK_LINE, REG_EXTENDED); in flex_init_regex()
|
/freebsd/contrib/mandoc/ |
H A D | test-rewb-bsd.c | 10 if (regcomp(&re, "[[:<:]]word[[:>:]]", REG_EXTENDED | REG_NOSUB)) in main()
|
H A D | test-rewb-sysv.c | 10 if (regcomp(&re, "\\<word\\>", REG_EXTENDED | REG_NOSUB)) in main()
|
/freebsd/lib/libcompat/4.3/ |
H A D | re_comp.c | 68 rc = regcomp(&re_regexp, s, REG_EXTENDED); in re_comp()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | regex_impl.h | 57 #define REG_EXTENDED 0001 macro
|
H A D | Regex.cpp | 35 flags |= REG_EXTENDED; in Regex()
|
/freebsd/contrib/nvi/regex/ |
H A D | regex.h | 63 #define REG_EXTENDED 0001 macro
|
/freebsd/include/ |
H A D | regex.h | 64 #define REG_EXTENDED 0001 macro
|
/freebsd/usr.bin/find/ |
H A D | main.c | 85 regexp_flags |= REG_EXTENDED; in main()
|
/freebsd/usr.bin/killall/ |
H A D | killall.c | 356 REG_EXTENDED|REG_NOSUB) != 0) { in main() 382 REG_EXTENDED|REG_NOSUB) != 0) { in main()
|
/freebsd/contrib/atf/atf-c++/detail/ |
H A D | text.cpp | 64 if (::regcomp(&preg, regex.c_str(), REG_EXTENDED) != 0) in match()
|
/freebsd/usr.sbin/gstat/ |
H A D | gstat.c | 139 if (regcomp(&f_re, optarg, REG_EXTENDED) != 0) in main() 585 if (regcomp(&tmp_f_re, tmp_f_s, REG_EXTENDED) in main()
|
/freebsd/contrib/kyua/utils/text/ |
H A D | regex.cpp | 223 const int flags = REG_EXTENDED | (ignore_case ? REG_ICASE : 0); in impl()
|
/freebsd/usr.bin/m4/ |
H A D | gnum4.c | 485 int mode = REG_EXTENDED; in dopatsubst() 529 error = regcomp(&re, source, REG_EXTENDED|REG_NEWLINE); in doregexp()
|
/freebsd/usr.bin/whereis/ |
H A D | whereis.c | 405 if ((i = regcomp(&re, MANWHEREISMATCH, REG_EXTENDED)) != 0) { in main() 621 REG_EXTENDED|REG_NOSUB)) in main()
|
/freebsd/usr.sbin/prometheus_sysctl_exporter/ |
H A D | prometheus_sysctl_exporter.c | 588 error = regcomp(&exc_regex, optarg, REG_EXTENDED); in main() 603 error = regcomp(&inc_regex, optarg, REG_EXTENDED); in main()
|
/freebsd/contrib/ncurses/form/ |
H A D | fty_regex.c | 162 (REG_EXTENDED | REG_NOSUB | REG_NEWLINE))) in Generic_RegularExpression_Type()
|
/freebsd/lib/libc/regex/ |
H A D | regcomp.c | 220 if ((cflags®_EXTENDED) && (cflags®_NOSPEC)) in regcomp_internal() 272 p->allowbranch = (cflags & REG_EXTENDED) != 0; in regcomp_internal() 277 p->allowbranch = (cflags & REG_EXTENDED) != 0; in regcomp_internal() 279 if (cflags & REG_EXTENDED) { in regcomp_internal() 1335 if (!(p->g->cflags®_EXTENDED))
|
/freebsd/usr.bin/split/ |
H A D | split.c | 144 error = regcomp(&rgx, optarg, REG_EXTENDED|REG_NOSUB); in main()
|
/freebsd/contrib/atf/atf-c/ |
H A D | utils.c | 89 ATF_REQUIRE(regcomp(&preg, regex, REG_EXTENDED) == 0); in grep_string()
|