| /external/gtest/src/ |
| gtest-port.cc | 91 return regexec(&re.full_regex_, str, 1, &match, 0) == 0; 100 return regexec(&re.partial_regex_, str, 1, &match, 0) == 0;
|
| /external/llvm/utils/unittest/googletest/ |
| gtest-port.cc | 132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0; 141 return regexec(&re.partial_regex_, str, 1, &match, 0) == 0;
|
| /external/protobuf/gtest/src/ |
| gtest-port.cc | 122 return regexec(&re.full_regex_, str, 1, &match, 0) == 0; 131 return regexec(&re.partial_regex_, str, 1, &match, 0) == 0;
|
| /external/chromium/sdch/open-vcdiff/src/gtest/ |
| gtest-port.cc | 62 return regexec(&re.regex_, str, 1, &match, 0) == 0;
|
| /external/oprofile/libregex/ |
| op_regex.cpp | 49 return regexec(®ex, str.c_str(), nmatch, match, 0) != REG_NOMATCH;
|
| /external/pcre/ |
| pcreposix.c | 297 regexec(const regex_t *preg, const char *string, size_t nmatch, function
|
| pcretest.c | [all...] |
| /ndk/sources/host-tools/ndk-stack/ |
| ndk-stack-parser.c | 237 int err = regexec(regex, line, 1, match, 0x00400/*REG_TRACE*/); 241 fprintf(stderr, "regexec(%s, %s) has failed: %s\n", line, regex, rerr);
|
| /ndk/sources/host-tools/sed-4.2.1/lib/ |
| regex.h | 351 /* If this bit is set, then report only success or fail in regexec. 356 /* POSIX `eflags' bits (i.e., information for regexec). */ 380 _REG_NOMATCH, /* Didn't find a match (for regexec). */ 667 extern int regexec (const regex_t *_Restrict_ __preg,
|
| gnulib.mk | 498 EXTRA_DIST += regcomp.c regex.c regex.h regex_internal.c regex_internal.h regexec.c 500 EXTRA_libsed_a_SOURCES += regcomp.c regex.c regex_internal.c regexec.c [all...] |
| regexec.c | 212 /* regexec searches for a given pattern, specified by PREG, in the 227 regexec (preg, string, nmatch, pmatch, eflags) 267 versioned_symbol (libc, __regexec, regexec, GLIBC_2_3_4); 278 return regexec (preg, string, nmatch, pmatch, 281 compat_symbol (libc, __compat_regexec, regexec, GLIBC_2_0); 628 return 0 == regexec (&re_comp_buf, s, 0, NULL, 0); 637 meaning as with regexec. LAST_START is START + RANGE, where 226 regexec (preg, string, nmatch, pmatch, eflags) function [all...] |
| /ndk/sources/host-tools/sed-4.2.1/sed/ |
| regexp.c | 241 ret = regexec (®ex->pattern, buf, regsize, regmatch, REG_STARTEND);
|
| /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
| regex.h | 281 /* If this bit is set, then report only success or fail in regexec. 286 /* POSIX `eflags' bits (i.e., information for regexec). */ 312 REG_NOMATCH, /* Didn't find a match (for regexec). */ 546 extern int regexec (const regex_t *__restrict __preg,
|
| /ndk/sources/host-tools/sed-4.2.1/ |
| config_h.in | 770 #undef regexec
|
| /ndk/sources/host-tools/sed-4.2.1/testsuite/ |
| tst-rxspencer.c | 271 if (regexec (&re, string, 10, rm, eflags)) 276 printf ("%s regexec failed\n", fail); 284 printf ("%s regexec unexpectedly succeeded\n", fail);
|
| /bionic/libc/ |
| Android.mk | 320 regex/regexec.c \
|