Home
last modified time | relevance | path

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

123

/third_party/musl/Benchmark/musl/
H A Dlibc_regex.cpp44 benchmark::DoNotOptimize(regcomp(&reg, pattern, flag)); in Bm_function_Regcomp()
54 if (regcomp(&reg, pattern, flag)) { in Bm_function_Regexec()
55 perror("regcomp"); in Bm_function_Regexec()
76 if (regcomp(&reg, pattern, flag)) { in Bm_function_Regall()
77 perror("regcomp"); in Bm_function_Regall()
/third_party/pcre2/pcre2/src/
H A Dpcre2posix.c205 #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 Dpcre2posix.h167 #define regcomp pcre2_regcomp macro
H A Dpcre2posix_test.c134 int rc = regcomp(&re, pattern, cflags[i]); in main()
/third_party/benchmark/cmake/
H A Dposix_regex.cpp6 int ec = regcomp(&re, "^[a-z]+[0-9]+$", REG_EXTENDED | REG_NOSUB); in main()
H A Dgnu_posix_regex.cpp6 int ec = regcomp(&re, "^[a-z]+[0-9]+$", REG_EXTENDED | REG_NOSUB); in main()
/third_party/musl/libc-test/src/regression/
H A Dregex-escaped-high-byte.c16 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 Dregexec-nosub.c11 r = regcomp(&re, "abc", REG_NOSUB); in main()
13 t_error("regcomp failed: %d\n", r); in main()
H A Dregex-backref-0.c13 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 Dregex-negated-range.c12 n = regcomp(&r, "[^aa-z]", 0); in main()
15 t_error("regcomp returned %d (%s)\n", n, buf); in main()
H A Dregex-ere-backref.c13 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 Dregex-bracket-icase.c30 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 Dregex.h52 int regcomp(regex_t *__restrict, const char *__restrict, int);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dregex.h52 int regcomp(regex_t *__restrict, const char *__restrict, int);
/third_party/musl/porting/uniproton/kernel/include/
H A Dregex.h52 int regcomp(regex_t *__restrict, const char *__restrict, int);
/third_party/musl/include/
H A Dregex.h52 int regcomp(regex_t *__restrict, const char *__restrict, int);
/third_party/musl/libc-test/src/api/
H A Dregex.c37 {int(*p)(regex_t*restrict,const char*restrict,int) = regcomp;} in f()
/third_party/musl/libc-test/src/functional/
H A Dtest-malloc-stats-print.c47 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 Dabg-regex.cc114 if (regcomp(r.get(), str.c_str(), REG_EXTENDED)) in compile()
/third_party/alsa-lib/src/ucm/
H A Ducm_regex.c154 err = regcomp(&re, s, options); in uc_mgr_define_regex()
/third_party/benchmark/src/
H A Dre.h120 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB); in Init()
/third_party/skia/third_party/externals/microhttpd/src/examples/
H A Dmhd2spdy_structures.c59 return regcomp(preg, "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?", REG_EXTENDED); in init_parse_uri()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Drc_test_helpers.c69 if (regcomp(&regex, "^[ \n]+$", REG_EXTENDED)) { in is_whitespace()
92 err_code = regcomp(&regex, regex_str, REG_EXTENDED); in regex_helper()
/third_party/mesa3d/src/util/
H A Dxmlconfig.c51 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 Dlinux_joystick.c327 _glfw.linjs.regexCompiled = (regcomp(&_glfw.linjs.regex, "^event[0-9]\\+$", 0) == 0); in _glfwInitJoysticksLinux()

Completed in 11 milliseconds

123