/third_party/musl/Benchmark/musl/ |
H A D | libc_regex.cpp | 44 benchmark::DoNotOptimize(regcomp(®, pattern, flag)); in Bm_function_Regcomp() 54 if (regcomp(®, pattern, flag)) { in Bm_function_Regexec() 55 perror("regcomp"); in Bm_function_Regexec() 76 if (regcomp(®, pattern, flag)) { in Bm_function_Regall() 77 perror("regcomp"); in Bm_function_Regall()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2posix.c | 205 #undef regcomp 206 PCRE2POSIX_EXP_DECL int regcomp(regex_t *, const char *, int); 208 regcomp(regex_t *preg, const char *pattern, int cflags)
|
H A D | pcre2posix.h | 167 #define regcomp pcre2_regcomp macro
|
H A D | pcre2posix_test.c | 134 int rc = regcomp(&re, pattern, cflags[i]); in main()
|
/third_party/benchmark/cmake/ |
H A D | posix_regex.cpp | 6 int ec = regcomp(&re, "^[a-z]+[0-9]+$", REG_EXTENDED | REG_NOSUB); in main()
|
H A D | gnu_posix_regex.cpp | 6 int ec = regcomp(&re, "^[a-z]+[0-9]+$", REG_EXTENDED | REG_NOSUB); in main()
|
/third_party/musl/libc-test/src/regression/ |
H A D | regex-escaped-high-byte.c | 16 n = regcomp(&r, "\\\xfc", 0); in main() 19 t_error("regcomp(\\\\\\xfc) returned %d (%s) wanted REG_BADPAT\n", n, buf); in main()
|
H A D | regexec-nosub.c | 11 r = regcomp(&re, "abc", REG_NOSUB); in main() 13 t_error("regcomp failed: %d\n", r); in main()
|
H A D | regex-backref-0.c | 13 n = regcomp(&r, pat, 0); in main() 16 t_error("regcomp(%s) returned %d (%s) wanted 0\n", pat, n, buf); in main()
|
H A D | regex-negated-range.c | 12 n = regcomp(&r, "[^aa-z]", 0); in main() 15 t_error("regcomp returned %d (%s)\n", n, buf); in main()
|
H A D | regex-ere-backref.c | 13 n = regcomp(&r, pat, REG_EXTENDED); in main() 16 t_error("regcomp(%s) returned %d (%s) wanted 0\n", pat, n, buf); in main()
|
H A D | regex-bracket-icase.c | 30 n = regcomp(&re, pat, REG_ICASE); in main() 33 t_error("regcomp(\"%s\") failed: %d (%s)\n", pat, n, buf); in main()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | regex.h | 52 int regcomp(regex_t *__restrict, const char *__restrict, int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | regex.h | 52 int regcomp(regex_t *__restrict, const char *__restrict, int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | regex.h | 52 int regcomp(regex_t *__restrict, const char *__restrict, int);
|
/third_party/musl/include/ |
H A D | regex.h | 52 int regcomp(regex_t *__restrict, const char *__restrict, int);
|
/third_party/musl/libc-test/src/api/ |
H A D | regex.c | 37 {int(*p)(regex_t*restrict,const char*restrict,int) = regcomp;} in f()
|
/third_party/musl/libc-test/src/functional/ |
H A D | test-malloc-stats-print.c | 47 if (regcomp(&thread_data_regex, thread_data_regex_s, REG_EXTENDED | REG_NEWLINE) != 0) { in find_thread_in_output()
|
/third_party/libabigail/src/ |
H A D | abg-regex.cc | 114 if (regcomp(r.get(), str.c_str(), REG_EXTENDED)) in compile()
|
/third_party/alsa-lib/src/ucm/ |
H A D | ucm_regex.c | 154 err = regcomp(&re, s, options); in uc_mgr_define_regex()
|
/third_party/benchmark/src/ |
H A D | re.h | 120 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB); in Init()
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
H A D | mhd2spdy_structures.c | 59 return regcomp(preg, "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?", REG_EXTENDED); in init_parse_uri()
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
H A D | rc_test_helpers.c | 69 if (regcomp(®ex, "^[ \n]+$", REG_EXTENDED)) { in is_whitespace() 92 err_code = regcomp(®ex, regex_str, REG_EXTENDED); in regex_helper()
|
/third_party/mesa3d/src/util/ |
H A D | xmlconfig.c | 51 static inline int regcomp(regex_t *r, const char *s, int f) { return 0; } in regcomp() function 707 if (regcomp(&re, exec_regexp, REG_EXTENDED|REG_NOSUB) == 0) { in parseAppAttr() 740 if (regcomp(&re, application_name_match, REG_EXTENDED|REG_NOSUB) == 0) { in parseAppAttr() 777 if (regcomp(&re, engine_name_match, REG_EXTENDED|REG_NOSUB) == 0) { in parseEngineAttr()
|
/third_party/glfw/src/ |
H A D | linux_joystick.c | 327 _glfw.linjs.regexCompiled = (regcomp(&_glfw.linjs.regex, "^event[0-9]\\+$", 0) == 0); in _glfwInitJoysticksLinux()
|