Searched refs:REG_EXTENDED (Results 1 - 25 of 56) sorted by relevance

123

/freebsd-current/lib/libc/locale/
H A Drpmatch.c39 if (regcomp(&yes, nl_langinfo(YESEXPR), REG_EXTENDED|REG_NOSUB) != 0)
41 if (regcomp(&no, nl_langinfo(NOEXPR), REG_EXTENDED|REG_NOSUB) != 0) {
/freebsd-current/contrib/less/
H A Dpattern.h20 #ifdef REG_EXTENDED
22 #define REGCOMP_FLAG (less_is_more ? 0 : REG_EXTENDED)
/freebsd-current/contrib/mandoc/
H A Dtest-rewb-bsd.c10 if (regcomp(&re, "[[:<:]]word[[:>:]]", REG_EXTENDED | REG_NOSUB))
H A Dtest-rewb-sysv.c10 if (regcomp(&re, "\\<word\\>", REG_EXTENDED | REG_NOSUB))
/freebsd-current/contrib/netbsd-tests/lib/libc/regex/
H A Dt_exhaust.c162 { 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 Dmain.c45 int copts = REG_EXTENDED;
192 options('c', f[1]) &~ REG_EXTENDED);
243 const char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE";
347 o &= ~REG_EXTENDED;
359 o &= ~REG_EXTENDED;
H A Dt_regex_att.c505 flags = REG_EXTENDED;
/freebsd-current/lib/libcompat/4.3/
H A Dre_comp.c68 rc = regcomp(&re_regexp, s, REG_EXTENDED);
/freebsd-current/contrib/nvi/regex/
H A Dregex.h63 #define REG_EXTENDED 0001 macro
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A Dregex_impl.h57 #define REG_EXTENDED 0001 macro
H A DRegex.cpp35 flags |= REG_EXTENDED;
/freebsd-current/contrib/flex/src/
H A Dregex.c39 flex_regcomp(&regex_linedir, REGEXP_LINEDIR, REG_EXTENDED);
40 flex_regcomp(&regex_blank_line, REGEXP_BLANK_LINE, REG_EXTENDED);
/freebsd-current/include/
H A Dregex.h64 #define REG_EXTENDED 0001 macro
/freebsd-current/usr.bin/find/
H A Dmain.c85 regexp_flags |= REG_EXTENDED;
/freebsd-current/lib/libc/regex/grot/
H A Dmain.c18 int copts = REG_EXTENDED;
162 options('c', f[1]) &~ REG_EXTENDED);
214 char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE";
315 o &= ~REG_EXTENDED;
327 o &= ~REG_EXTENDED;
/freebsd-current/contrib/atf/atf-c++/detail/
H A Dtext.cpp64 if (::regcomp(&preg, regex.c_str(), REG_EXTENDED) != 0)
/freebsd-current/contrib/kyua/utils/text/
H A Dregex.cpp223 const int flags = REG_EXTENDED | (ignore_case ? REG_ICASE : 0);
/freebsd-current/contrib/ncurses/form/
H A Dfty_regex.c131 (REG_EXTENDED | REG_NOSUB | REG_NEWLINE)))
/freebsd-current/usr.bin/killall/
H A Dkillall.c356 REG_EXTENDED|REG_NOSUB) != 0) {
382 REG_EXTENDED|REG_NOSUB) != 0) {
/freebsd-current/usr.bin/m4/
H A Dgnum4.c485 int mode = REG_EXTENDED;
529 error = regcomp(&re, source, REG_EXTENDED|REG_NEWLINE);
/freebsd-current/usr.sbin/gstat/
H A Dgstat.c139 if (regcomp(&f_re, optarg, REG_EXTENDED) != 0)
565 if (regcomp(&tmp_f_re, tmp_f_s, REG_EXTENDED)
/freebsd-current/usr.bin/split/
H A Dsplit.c144 error = regcomp(&rgx, optarg, REG_EXTENDED|REG_NOSUB);
/freebsd-current/usr.bin/whereis/
H A Dwhereis.c405 if ((i = regcomp(&re, MANWHEREISMATCH, REG_EXTENDED)) != 0) {
621 REG_EXTENDED|REG_NOSUB))
/freebsd-current/usr.sbin/prometheus_sysctl_exporter/
H A Dprometheus_sysctl_exporter.c588 error = regcomp(&exc_regex, optarg, REG_EXTENDED);
603 error = regcomp(&inc_regex, optarg, REG_EXTENDED);
/freebsd-current/contrib/atf/atf-c/
H A Dutils.c89 ATF_REQUIRE(regcomp(&preg, regex, REG_EXTENDED) == 0);

Completed in 313 milliseconds

123