Home
last modified time | relevance | path

Searched refs:regex_t (Results 1 - 25 of 77) sorted by relevance

1234

/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dregex.h20 } 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 Dregex.h20 } 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 Dregex.h20 } 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 Dregex.h20 } 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 Dabg-regex.h28 /// 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 Dpcre2posix.c190 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 Dpcre2posix.h108 } 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 Dregex.c10 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 Dabg-regex.cc30 /// 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 Dlibc_regex.cpp43 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 Dmhd2spdy_structures.h154 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 Dmhd2spdy_structures.c47 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 Drestrict-array.c21 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 Doptions.h72 regex_t *allowedchars;
73 regex_t *allowedregexp;
/third_party/benchmark/cmake/
H A Dposix_regex.cpp5 regex_t re; in main()
H A Dgnu_posix_regex.cpp5 regex_t re; in main()
/third_party/musl/libc-test/src/regression/
H A Dregex-escaped-high-byte.c10 regex_t r; in main()
H A Dregexec-nosub.c8 regex_t re; in main()
H A Dregex-backref-0.c10 regex_t r; in main()
H A Dregex-negated-range.c9 regex_t r; in main()
H A Dregex-ere-backref.c10 regex_t r; in main()
H A Dregex-bracket-icase.c12 regex_t re; in main()
/third_party/musl/src/regex/
H A Dregerror.c30 size_t regerror(int e, const regex_t *restrict preg, char *restrict buf, size_t size) in regerror()
/third_party/glfw/src/
H A Dlinux_joystick.h52 regex_t regex;
/third_party/mesa3d/src/util/
H A Dxmlconfig.c47 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()

Completed in 8 milliseconds

1234