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

1234

/freebsd-10.0-release/lib/libc/regex/
H A DSymbol.map6 regcomp;
/freebsd-10.0-release/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-10.0-release/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-10.0-release/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-10.0-release/contrib/gdb/include/
H A Dxregex.h9 # define regcomp xregcomp macro
/freebsd-10.0-release/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-10.0-release/contrib/less/
H A Dregexp.h28 extern regexp *regcomp _ANSI_ARGS_((char *exp));
H A Dpattern.c50 if (regcomp(comp, pattern, REGCOMP_FLAG))
101 if ((comp = regcomp(pattern)) == NULL)
104 * regcomp has already printed an error message
/freebsd-10.0-release/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-10.0-release/contrib/nvi/regex/
H A Dregex.h65 /* regcomp() flags */
103 int regcomp __P((regex_t *, const RCHAR_T *, int));
/freebsd-10.0-release/include/
H A Dregex.h63 /* regcomp() flags */
104 int regcomp(regex_t * __restrict, const char * __restrict, int);
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dhpacc-abi.c319 regcomp (&constructor_pattern,
322 regcomp (&destructor_pattern,
325 regcomp (&operator_pattern,
/freebsd-10.0-release/bin/ed/
H A Dre.c66 if ((n = regcomp(expr, exprs, 0))) {
/freebsd-10.0-release/contrib/libgnuregex/
H A Dregex.c33 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags) macro
66 #include "regcomp.c"
/freebsd-10.0-release/contrib/atf/atf-c++/detail/
H A Dtest_helpers.cpp122 ATF_REQUIRE(::regcomp(&preg, regex, REG_EXTENDED) == 0);
H A Dtext.cpp62 // Special case: regcomp does not like empty regular expressions.
68 if (::regcomp(&preg, regex.c_str(), REG_EXTENDED) != 0)
/freebsd-10.0-release/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-10.0-release/contrib/ntp/libopts/
H A Dstack.c92 if (regcomp( &re, pOptDesc->optArg.argString, REG_NOSUB ) != 0)
/freebsd-10.0-release/contrib/ntp/sntp/libopts/
H A Dstack.c92 if (regcomp( &re, pOptDesc->optArg.argString, REG_NOSUB ) != 0)
/freebsd-10.0-release/lib/clang/libllvmsupport/
H A DMakefile80 regcomp.c \
/freebsd-10.0-release/usr.sbin/fifolog/fifolog_reader/
H A Dfifolog_reader.c141 i = regcomp(&R, opt_R, REG_NOSUB);
/freebsd-10.0-release/contrib/atf/atf-c/detail/
H A Dtest_helpers.c116 ATF_REQUIRE(regcomp(&preg, regex, REG_EXTENDED) == 0);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DRegularExpression.cpp109 m_comp_err = ::regcomp (&m_preg, re, flags);

Completed in 297 milliseconds

1234