HomeSort by relevance Sort by last modified time
    Searched full:regcomp (Results 26 - 50 of 245) sorted by null

12 3 4 5 6 7 8 910

  /external/google-benchmark/src/
re.h 102 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB);
  /external/libcxx/utils/google-benchmark/src/
re.h 102 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB);
  /external/libedit/
configure.ac 111 AC_CHECK_FUNCS([endpwent isascii memchr memset re_comp regcomp strcasecmp strchr strcspn strdup strerror strrchr strstr strtol issetugid wcsdup strlcpy strlcat fgetln vis strvis strunvis __secure_getenv secure_getenv])
config.h.in 84 /* Define to 1 if you have the `regcomp' function. */
  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.c 59 return regcomp(preg, "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?", REG_EXTENDED);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
re.h 102 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
README 119 regparse.h internal definitions for regparse.c and regcomp.c
120 regcomp.c compiling and optimization functions
regposix.c 136 regcomp(regex_t* reg, const char* pattern, int posix_options) function
  /external/libmtp/util/
mtp-probe.c 187 ret = regcomp(&r, "^ep_[0-9a-f]+$", REG_EXTENDED | REG_NOSUB);
251 ret = regcomp(&r, "^[0-9]+-[0-9]+(\\.[0-9])*\\:[0-9]+\\.[0-9]+$", REG_EXTENDED | REG_NOSUB);
  /external/strace/
basic_filters.c 69 if ((rc = regcomp(&preg, s, REG_EXTENDED | REG_NOSUB)) != 0)
70 regerror_msg_and_die(rc, &preg, "regcomp", s);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
regex.h 282 /* POSIX `cflags' bits (i.e., information for `regcomp'). */
332 /* POSIX regcomp return error codes. (In the order listed in the
350 REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
489 `regcomp', with a malloc'ed value, or set to NULL before calling
580 extern int regcomp (regex_t *__restrict __preg,
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regex2.h 168 #define MCadd(p, cs, cp) mcadd(p, cs, cp) /* regcomp() internal fns */
186 int cflags; /* copy of regcomp() cflags argument */
regcomp.c 1 /* $NetBSD: regcomp.c,v 1.36 2015/09/12 19:08:47 christos Exp $ */
34 * @(#)regcomp.c 8.5 (Berkeley) 3/20/94
71 * @(#)regcomp.c 8.5 (Berkeley) 3/20/94
77 static char sccsid[] = "@(#)regcomp.c 8.5 (Berkeley) 3/20/94";
79 __RCSID("$NetBSD: regcomp.c,v 1.36 2015/09/12 19:08:47 christos Exp $");
95 __weak_alias(regcomp,_regcomp)
127 /* === regcomp.c === */
222 - regcomp - interface for parser and compilation
223 = extern int regcomp(regex_t *, const char *, int);
234 regcomp( function
    [all...]
  /external/perfetto/src/ftrace_reader/
proto_translation_table.cc 140 int ret = regcomp(&re, pattern, REG_EXTENDED | REG_NOSUB);
142 PERFETTO_FATAL("regcomp: %s", RegexError(ret, &re).c_str());
  /external/eigen/bench/tensors/
benchmark_main.cc 106 if (regcomp(&re, argv[i], 0) != 0) {
  /external/llvm/lib/Support/
Regex.cpp 179 // implementation in regcomp.c and double checked against the POSIX extended
  /external/pcre/dist2/
NEWS 9 2. The POSIX wrapper function regcomp() did not used to support back references
ChangeLog 25 6. When the POSIX wrapper function regcomp() is called, the REG_NOSUB option
28 by other implementations of regcomp() with RE_NOSUB. Therefore, REG_NOSUB no
33 posix_nosub, to call regcomp() with REG_NOSUB. Previously the no_auto_capture
46 regex library instead of libpcre2-posix. In this situation, a call to regcomp()
52 from a successful call of regcomp() are valid for PCRE2's regcomp(). If they
472 87. Failure to get memory for the match data in regcomp() is now given as a
473 regcomp() error instead of waiting for regexec() to pick it up.
478 89. Paranoid check in regcomp() for bad error code from pcre2_compile().
    [all...]
  /external/pcre/dist2/src/
pcre2posix.h 137 PCRE2POSIX_EXP_DECL int regcomp(regex_t *, const char *, int);
  /external/swiftshader/src/Reactor/
Android.mk 90 $(LLVMDEPENDENCIES_PATH)/lib/Support/regcomp.c \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
posix1_lim.h 103 REGEXEC and REGCOMP functions when using the interval notation. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
posix1_lim.h 103 REGEXEC and REGCOMP functions when using the interval notation. */
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
grep.h 113 /* Flags passed to regcomp() and regexec() */
  /toolchain/binutils/binutils-2.27/include/
xregex2.h 257 /* POSIX `cflags' bits (i.e., information for `regcomp'). */
301 /* POSIX regcomp return error codes. (In the order listed in the
319 REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
539 extern int regcomp (regex_t *__restrict __preg,
  /bionic/libc/tools/
posix-2013.txt 846 regcomp

Completed in 978 milliseconds

12 3 4 5 6 7 8 910