/third_party/musl/Benchmark/musl/ |
D | libc_regex.cpp | 44 benchmark::DoNotOptimize(regcomp(®, pattern, flag)); in Bm_function_Regcomp() 54 if (regcomp(®, pattern, flag)) { in Bm_function_Regexec() 76 if (regcomp(®, pattern, flag)) { in Bm_function_Regall()
|
/third_party/pcre2/pcre2/src/ |
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)
|
D | pcre2posix.h | 167 #define regcomp pcre2_regcomp macro
|
D | pcre2posix_test.c | 134 int rc = regcomp(&re, pattern, cflags[i]); in main()
|
/third_party/benchmark/cmake/ |
D | gnu_posix_regex.cpp | 6 int ec = regcomp(&re, "^[a-z]+[0-9]+$", REG_EXTENDED | REG_NOSUB); in main()
|
D | 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/ |
D | regex-escaped-high-byte.c | 16 n = regcomp(&r, "\\\xfc", 0); in main()
|
D | regexec-nosub.c | 11 r = regcomp(&re, "abc", REG_NOSUB); in main()
|
D | regex-negated-range.c | 12 n = regcomp(&r, "[^aa-z]", 0); in main()
|
D | regex-backref-0.c | 13 n = regcomp(&r, pat, 0); in main()
|
D | regex-ere-backref.c | 13 n = regcomp(&r, pat, REG_EXTENDED); in main()
|
D | regex-bracket-icase.c | 30 n = regcomp(&re, pat, REG_ICASE); in main()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | regex.h | 52 int regcomp(regex_t *__restrict, const char *__restrict, int);
|
/third_party/musl/ndk_musl_include/ |
D | regex.h | 52 int regcomp(regex_t *__restrict, const char *__restrict, int);
|
/third_party/musl/include/ |
D | regex.h | 52 int regcomp(regex_t *__restrict, const char *__restrict, int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | regex.h | 52 int regcomp(regex_t *__restrict, const char *__restrict, int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | regex.h | 52 int regcomp(regex_t *__restrict, const char *__restrict, int);
|
/third_party/musl/libc-test/src/api/ |
D | regex.c | 37 {int(*p)(regex_t*restrict,const char*restrict,int) = regcomp;} in f()
|
/third_party/musl/libc-test/src/functional/ |
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/ |
D | abg-regex.cc | 114 if (regcomp(r.get(), str.c_str(), REG_EXTENDED)) in compile()
|
/third_party/benchmark/src/ |
D | re.h | 120 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB); in Init()
|
/third_party/alsa-lib/src/ucm/ |
D | ucm_regex.c | 154 err = regcomp(&re, s, options); in uc_mgr_define_regex()
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
D | mhd2spdy_structures.c | 59 return regcomp(preg, "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?", REG_EXTENDED); in init_parse_uri()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/ |
D | iccarm.gni | 39 "$MUSLPORTINGDIR/src/regex/regcomp.c",
|
/third_party/mesa3d/src/util/ |
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()
|