Searched refs:regcomp (Results 1 - 25 of 87) sorted by relevance

1234

/freebsd-11-stable/lib/libc/regex/
H A DMakefile.inc9 SRCS+= regcomp.c regerror.c regexec.c regfree.c
16 MLINKS+=regex.3 regcomp.3 regex.3 regexec.3 regex.3 regerror.3
/freebsd-11-stable/lib/libc/locale/
H A Drpmatch.c40 if (regcomp(&yes, nl_langinfo(YESEXPR), REG_EXTENDED|REG_NOSUB) != 0)
42 if (regcomp(&no, nl_langinfo(NOEXPR), REG_EXTENDED|REG_NOSUB) != 0) {
/freebsd-11-stable/contrib/gcclibs/include/
H A Dxregex.h9 # define regcomp xregcomp macro
H A Dxregex2.h258 /* POSIX `cflags' bits (i.e., information for `regcomp'). */
302 /* POSIX regcomp return error codes. (In the order listed in the
320 REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
540 extern int regcomp (regex_t *__restrict __preg,
/freebsd-11-stable/contrib/gdb/include/
H A Dxregex.h9 # define regcomp xregcomp macro
/freebsd-11-stable/contrib/binutils/include/
H A Dxregex.h9 # define regcomp xregcomp macro
H A Dxregex2.h258 /* POSIX `cflags' bits (i.e., information for `regcomp'). */
302 /* POSIX regcomp return error codes. (In the order listed in the
320 REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
540 extern int regcomp (regex_t *__restrict __preg,
/freebsd-11-stable/contrib/mdocml/
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-11-stable/lib/libc/regex/grot/
H A DMakefile28 REGSRC = regcomp.c regerror.c regexec.c regfree.c engine.c
32 OBJPRODN = regcomp.o regexec.o regerror.o regfree.o
37 LINTC = regcomp.c regexec.c regerror.c regfree.c debug.c main.c $(SRCMISSING)
59 regcomp.o regexec.o regfree.o debug.o: utils.h regex.h regex2.h
60 regcomp.o: cname.h regcomp.ih
/freebsd-11-stable/lib/libcompat/4.3/
H A Dre_comp.c38 * terms of the regcomp/regexec interface. It's possible that some programs
72 rc = regcomp(&re_regexp, s, REG_EXTENDED);
/freebsd-11-stable/contrib/less/
H A Dregexp.h28 extern regexp *regcomp _ANSI_ARGS_((char *exp));
/freebsd-11-stable/include/
H A Dregex.h63 /* regcomp() flags */
104 int regcomp(regex_t * __restrict, const char * __restrict, int);
/freebsd-11-stable/contrib/nvi/regex/
H A Dregex.h61 /* regcomp() flags */
99 int regcomp(regex_t *, const RCHAR_T *, int);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dhpacc-abi.c319 regcomp (&constructor_pattern,
322 regcomp (&destructor_pattern,
325 regcomp (&operator_pattern,
/freebsd-11-stable/contrib/libgnuregex/
H A Dregex.c33 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags) macro
66 #include "regcomp.c"
/freebsd-11-stable/bin/ed/
H A Dre.c66 if ((n = regcomp(expr, exprs, 0))) {
/freebsd-11-stable/contrib/flex/
H A Dregex.c46 * @param preg Same as for regcomp().
47 * @param regex Same as for regcomp().
48 * @param cflags Same as for regcomp().
56 if ((err = regcomp (preg, regex, cflags)) != 0) {
62 flexfatal(_("Unable to allocate buffer to report regcomp"));
67 snprintf (errbuf, errbuf_sz, "regcomp for \"%s\" failed: %s", regex, rxerr);
/freebsd-11-stable/usr.sbin/fifolog/fifolog_reader/
H A Dfifolog_reader.c143 i = regcomp(&R, opt_R, REG_NOSUB);
/freebsd-11-stable/contrib/ncurses/form/
H A Dfty_regex.c122 && !regcomp(preg->pRegExp, rx,
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dtext.cpp58 // Special case: regcomp does not like empty regular expressions.
64 if (::regcomp(&preg, regex.c_str(), REG_EXTENDED) != 0)
/freebsd-11-stable/contrib/ntp/sntp/libopts/
H A Dstack.c73 if (regcomp(&re, od->optArg.argString, REG_NOSUB) != 0)
/freebsd-11-stable/usr.sbin/ctm/mkCTM/
H A Dmkctm.c504 if (regcomp(&reg_bogus, DEFAULT_BOGUS, REG_EXTENDED | REG_NEWLINE))
509 if (regcomp(&reg_ignore, DEFAULT_IGNORE, REG_EXTENDED | REG_NEWLINE))
528 if (regcomp(&reg_ignore, optarg,
540 if (regcomp(&reg_bogus, optarg,
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/regex/
H A Dt_exhaust.c193 e = regcomp(&re, d, tests[i].type);
198 "regcomp returned %d (%s) for pattern %zu [%s]", e, ebuf,
/freebsd-11-stable/lib/clang/libllvmminimal/
H A DMakefile64 SRCS+= Support/regcomp.c

Completed in 169 milliseconds

1234