/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | regex.h | 20 } regex_t; typedef 52 int regcomp(regex_t *__restrict, const char *__restrict, int); 53 int regexec(const regex_t *__restrict, const char *__restrict, size_t, regmatch_t *__restrict, int); 54 void regfree(regex_t *); 56 size_t regerror(int, const regex_t *__restrict, char *__restrict, size_t);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | regex.h | 20 } regex_t; typedef 52 int regcomp(regex_t *__restrict, const char *__restrict, int); 53 int regexec(const regex_t *__restrict, const char *__restrict, size_t, regmatch_t *__restrict, int); 54 void regfree(regex_t *); 56 size_t regerror(int, const regex_t *__restrict, char *__restrict, size_t);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | regex.h | 20 } regex_t; typedef 52 int regcomp(regex_t *__restrict, const char *__restrict, int); 53 int regexec(const regex_t *__restrict, const char *__restrict, size_t, regmatch_t *__restrict, int); 54 void regfree(regex_t *); 56 size_t regerror(int, const regex_t *__restrict, char *__restrict, size_t);
|
/third_party/musl/include/ |
H A D | regex.h | 20 } regex_t; typedef 52 int regcomp(regex_t *__restrict, const char *__restrict, int); 53 int regexec(const regex_t *__restrict, const char *__restrict, size_t, regmatch_t *__restrict, int); 54 void regfree(regex_t *); 56 size_t regerror(int, const regex_t *__restrict, char *__restrict, size_t);
|
/third_party/libabigail/include/ |
H A D | abg-regex.h | 28 /// A convenience typedef for a shared pointer of regex_t. 29 typedef std::shared_ptr<regex_t> regex_t_sptr; 31 /// A delete functor for a shared_ptr of regex_t. 34 /// The operator called to de-allocate the pointer to regex_t 35 /// embedded in a shared_ptr<regex_t> 37 /// @param r the pointer to regex_t to de-allocate. 39 operator()(::regex_t* r) in operator ()() 69 /// Specialization of sptr_utils::build_sptr for regex_t. 71 /// This is used to wrap a pointer to regex_t into a 72 /// shared_ptr<regex_t> [all...] |
/third_party/pcre2/pcre2/src/ |
H A D | pcre2posix.c | 190 PCRE2POSIX_EXP_DECL size_t regerror(int, const regex_t *, char *, size_t); 192 regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size) 198 PCRE2POSIX_EXP_DECL void regfree(regex_t *); 200 regfree(regex_t *preg) 206 PCRE2POSIX_EXP_DECL int regcomp(regex_t *, const char *, int); 208 regcomp(regex_t *preg, const char *pattern, int cflags) 214 PCRE2POSIX_EXP_DECL int regexec(const regex_t *, const char *, size_t, 217 regexec(const regex_t *preg, const char *string, size_t nmatch, 230 pcre2_regerror(int errcode, const regex_t *preg, char *errbuf, in pcre2_regerror() 259 pcre2_regfree(regex_t *pre [all...] |
H A D | pcre2posix.h | 108 } regex_t; typedef 158 the PCRE2 library and not by accident from elsewhere (regex_t differs in size 161 PCRE2POSIX_EXP_DECL int PCRE2_CALL_CONVENTION pcre2_regcomp(regex_t *, const char *, int); 162 PCRE2POSIX_EXP_DECL int PCRE2_CALL_CONVENTION pcre2_regexec(const regex_t *, const char *, size_t, 164 PCRE2POSIX_EXP_DECL size_t PCRE2_CALL_CONVENTION pcre2_regerror(int, const regex_t *, char *, size_t); 165 PCRE2POSIX_EXP_DECL void PCRE2_CALL_CONVENTION pcre2_regfree(regex_t *);
|
/third_party/musl/libc-test/src/api/ |
H A D | regex.c | 10 regex_t x; in f() 37 {int(*p)(regex_t*restrict,const char*restrict,int) = regcomp;} in f() 38 {size_t(*p)(int,const regex_t*restrict,char*restrict,size_t) = regerror;} in f() 39 {int(*p)(const regex_t*restrict,const char*restrict,size_t,regmatch_t[restrict],int) = regexec;} in f() 40 {void(*p)(regex_t*) = regfree;} in f()
|
/third_party/libabigail/src/ |
H A D | abg-regex.cc | 30 /// Specialization of sptr_utils::build_sptr for regex_t. 32 /// This is used to wrap a pointer to regex_t into a 33 /// shared_ptr<regex_t>. 35 /// @param p the bare pointer to regex_t to wrap into a shared_ptr<regex_t>. 37 /// @return the shared_ptr<regex_t> that wraps @p p. 40 sptr_utils::build_sptr<regex_t>(regex_t *p) in build_sptr() 43 /// Specialization of sptr_utils::build_sptr for regex_t. 45 /// This creates a pointer to regex_t an [all...] |
/third_party/musl/Benchmark/musl/ |
H A D | libc_regex.cpp | 43 regex_t reg; in Bm_function_Regcomp() 53 regex_t reg; in Bm_function_Regexec() 71 regex_t reg; in Bm_function_Regall()
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
H A D | mhd2spdy_structures.h | 154 regex_t uri_preg; 272 init_parse_uri(regex_t * preg); 276 deinit_parse_uri(regex_t * preg); 280 parse_uri(regex_t * preg,
|
H A D | mhd2spdy_structures.c | 47 init_parse_uri(regex_t * preg) in init_parse_uri() 63 deinit_parse_uri(regex_t * preg) in deinit_parse_uri() 69 parse_uri(regex_t * preg, in parse_uri()
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | restrict-array.c | 21 typedef struct re_pattern_buffer regex_t; typedef 30 extern int regexec (const regex_t *__restrict __preg,
|
/third_party/cups-filters/filter/foomatic-rip/ |
H A D | options.h | 72 regex_t *allowedchars; 73 regex_t *allowedregexp;
|
/third_party/benchmark/cmake/ |
H A D | posix_regex.cpp | 5 regex_t re; in main()
|
H A D | gnu_posix_regex.cpp | 5 regex_t re; in main()
|
/third_party/musl/libc-test/src/regression/ |
H A D | regex-escaped-high-byte.c | 10 regex_t r; in main()
|
H A D | regexec-nosub.c | 8 regex_t re; in main()
|
H A D | regex-backref-0.c | 10 regex_t r; in main()
|
H A D | regex-negated-range.c | 9 regex_t r; in main()
|
H A D | regex-ere-backref.c | 10 regex_t r; in main()
|
H A D | regex-bracket-icase.c | 12 regex_t re; in main()
|
/third_party/musl/src/regex/ |
H A D | regerror.c | 30 size_t regerror(int e, const regex_t *restrict preg, char *restrict buf, size_t size) in regerror()
|
/third_party/glfw/src/ |
H A D | linux_joystick.h | 52 regex_t regex;
|
/third_party/mesa3d/src/util/ |
H A D | xmlconfig.c | 47 typedef int regex_t; typedef 51 static inline int regcomp(regex_t *r, const char *s, int f) { return 0; } in regcomp() 52 static inline int regexec(regex_t *r, const char *s, int n, void *p, int f) { return REG_NOMATCH; } in regexec() 53 static inline void regfree(regex_t* r) {} in regfree() 705 regex_t re; in parseAppAttr() 738 regex_t re; in parseAppAttr() 775 regex_t re; in parseEngineAttr()
|