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

123456

/macosx-10.9.5/cxxfilt-11/cxxfilt/include/
H A Dxregex.h9 # define regcomp xregcomp macro
/macosx-10.9.5/Libc-997.90.3/include/
H A Dregex.h118 /* regcomp() flags */
203 int regcomp(regex_t * __restrict, const char * __restrict, int) __DARWIN_ALIAS(regcomp); variable
206 int regcomp(regex_t * __restrict, const char * __restrict, int) LIBC_ALIAS(regcomp);
/macosx-10.9.5/less-23/less/
H A Dregexp.h28 extern regexp *regcomp _ANSI_ARGS_((char *exp));
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dfnmatch.c65 if (!(reflags = regcomp(&re, pattern, reflags)))
73 else if (!(reflags = regcomp(&re, pattern, reflags|REG_RIGHT)))
H A Dre_comp.c59 if (!(r = regcomp(&state.re, pattern, REG_LENIENT|REG_NOSUB|REG_NULL)))
H A Dregexp.c65 n = regcomp(&env->re, pattern, REG_LENIENT|REG_NULL);
/macosx-10.9.5/cups-372.4/cups/vcnet/regex/
H A Dregex.h22 /* === regcomp.c === */
23 extern int regcomp(regex_t *, const char *, int);
H A DMakefile20 OBJPRODN=regcomp.o regexec.o regerror.o regfree.o
23 REGSRC=regcomp.c regerror.c regexec.c regfree.c
28 LINTC=regcomp.c regexec.c regerror.c regfree.c debug.c main.c
55 regcomp.o: cclass.h cname.h regcomp.ih
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Drpmatch.c47 if (regcomp (re, pattern, REG_EXTENDED) != 0)
H A Dregex.c31 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags) macro
61 #include "regcomp.c"
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A Dregfronts.c2 * regcomp and regexec - front ends to re_ routines
38 - regcomp - compile regular expression
41 regcomp(
40 regcomp( function
H A Dregex.h50 * declarations of the "front end" functions, regcomp() and regexec(), or of
112 #define __REG_NOFRONT /* don't want regcomp() and regexec() */
200 ^ int regcomp(regex_t *, __REG_CONST char *, int);
295 int regcomp(regex_t *, __REG_CONST char *, int);
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A Dregfronts.c2 * regcomp and regexec - front ends to re_ routines
38 - regcomp - compile regular expression
41 regcomp(re, str, flags) function
H A Dregex.h51 * declarations of the "front end" functions, regcomp() and regexec(),
118 #define __REG_NOFRONT /* don't want regcomp() and regexec() */
209 ^ int regcomp(regex_t *, __REG_CONST char *, int);
312 int regcomp _ANSI_ARGS_((regex_t *, __REG_CONST char *, int));
/macosx-10.9.5/nano-11/src/
H A Dcolor.c156 regcomp(e->ext, e->ext_regex, REG_EXTENDED);
191 regcomp(tmpcolor->start, tmpcolor->start_regex,
197 regcomp(tmpcolor->end, tmpcolor->end_regex,
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dshmatch.c73 if (regcomp (&regex, pattern, rflags))
/macosx-10.9.5/pcre-7/pcre/
H A Dpcreposix.h135 PCREPOSIX_EXP_DECL int regcomp(regex_t *, const char *, int);
/macosx-10.9.5/Libc-997.90.3/gen/
H A Dwordexp.c123 int rc = regcomp(&re_cmd, "(^|[^\\])(`|\\$\\([^(])", REG_EXTENDED|REG_NOSUB);
136 rc = regcomp(&re_goodchars, rx,
139 rc = regcomp(&re_subcmd_syntax_err_kludge,
142 rc = regcomp(&re_quoted_string,
H A Dgetttyent.c347 if (regcomp(&brapreg, brapat, REG_EXTENDED) != 0)
349 if (regcomp(&decpreg, decpat, REG_EXTENDED) != 0) {
353 if (regcomp(&hexpreg, hexpat, REG_EXTENDED | REG_ICASE) != 0) {
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/test/internal/
H A Dtestregex.c51 rc = regcomp( &regex, argv[1], REG_EXTENDED|REG_NOSUB);
/macosx-10.9.5/apr-30/apr/apr/test/internal/
H A Dtestregex.c51 rc = regcomp( &regex, argv[1], REG_EXTENDED|REG_NOSUB);
/macosx-10.9.5/text_cmds-87/ed/
H A Dre.c69 if ((n = regcomp(expr, exprs, 0))) {
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c++/detail/
H A Dtest_helpers.cpp114 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)
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DCMakeLists.txt61 regcomp.c

Completed in 506 milliseconds

123456