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

123

/freebsd-13-stable/lib/libc/locale/
H A Drpmatch.c42 if (regcomp(&yes, nl_langinfo(YESEXPR), REG_EXTENDED|REG_NOSUB) != 0)
44 if (regcomp(&no, nl_langinfo(NOEXPR), REG_EXTENDED|REG_NOSUB) != 0) {
/freebsd-13-stable/contrib/less/
H A Dpattern.h19 #ifdef REG_EXTENDED
21 #define REGCOMP_FLAG (less_is_more ? 0 : REG_EXTENDED)
/freebsd-13-stable/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-13-stable/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;
/freebsd-13-stable/lib/libcompat/4.3/
H A Dre_comp.c71 rc = regcomp(&re_regexp, s, REG_EXTENDED);
/freebsd-13-stable/contrib/nvi/regex/
H A Dregex.h63 #define REG_EXTENDED 0001 macro
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregex_impl.h57 #define REG_EXTENDED 0001 macro
H A DRegex.cpp38 flags |= REG_EXTENDED;
/freebsd-13-stable/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-13-stable/include/
H A Dregex.h67 #define REG_EXTENDED 0001 macro
/freebsd-13-stable/usr.bin/find/
H A Dmain.c92 regexp_flags |= REG_EXTENDED;
/freebsd-13-stable/lib/libc/regex/grot/
H A Dmain.c21 int copts = REG_EXTENDED;
165 options('c', f[1]) &~ REG_EXTENDED);
217 char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE";
318 o &= ~REG_EXTENDED;
330 o &= ~REG_EXTENDED;
/freebsd-13-stable/contrib/kyua/utils/text/
H A Dregex.cpp223 const int flags = REG_EXTENDED | (ignore_case ? REG_ICASE : 0);
/freebsd-13-stable/contrib/atf/atf-c++/detail/
H A Dtext.cpp64 if (::regcomp(&preg, regex.c_str(), REG_EXTENDED) != 0)
/freebsd-13-stable/contrib/ncurses/form/
H A Dfty_regex.c131 (REG_EXTENDED | REG_NOSUB | REG_NEWLINE)))
/freebsd-13-stable/usr.bin/killall/
H A Dkillall.c358 REG_EXTENDED|REG_NOSUB) != 0) {
384 REG_EXTENDED|REG_NOSUB) != 0) {
/freebsd-13-stable/usr.bin/whereis/
H A Dwhereis.c408 if ((i = regcomp(&re, MANWHEREISMATCH, REG_EXTENDED)) != 0) {
624 REG_EXTENDED|REG_NOSUB))
/freebsd-13-stable/usr.sbin/gstat/
H A Dgstat.c141 if (regcomp(&f_re, optarg, REG_EXTENDED) != 0)
567 if (regcomp(&tmp_f_re, tmp_f_s, REG_EXTENDED)
/freebsd-13-stable/usr.bin/m4/
H A Dgnum4.c487 int mode = REG_EXTENDED;
531 error = regcomp(&re, source, REG_EXTENDED|REG_NEWLINE);
/freebsd-13-stable/usr.bin/split/
H A Dsplit.c147 if (regcomp(&rgx, optarg, REG_EXTENDED|REG_NOSUB) != 0)
/freebsd-13-stable/contrib/apr-util/dbd/unsupported/
H A Dapr_dbd_freetds.c433 if (regcomp(stmt->taint[n], arg, REG_ICASE|REG_EXTENDED) != 0) {
702 "%(\\{[^}]*\\})?([0-9]*)[A-Za-z]", REG_EXTENDED);
/freebsd-13-stable/lib/libc/regex/
H A Dregcomp.c228 if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
280 p->allowbranch = (cflags & REG_EXTENDED) != 0;
285 p->allowbranch = (cflags & REG_EXTENDED) != 0;
287 if (cflags & REG_EXTENDED) {
357 = #define REG_EXTENDED 0001
1325 if (!(p->g->cflags&REG_EXTENDED))
/freebsd-13-stable/contrib/atf/atf-c/
H A Dutils.c89 ATF_REQUIRE(regcomp(&preg, regex, REG_EXTENDED) == 0);

Completed in 288 milliseconds

123