Lines Matching refs:regex

40 tre_fixncomp(fastmatch_t *preg, const char *regex, size_t n, int cflags)  in tre_fixncomp()  argument
48 ret = tre_convert_pattern(regex, n, &wregex, &wlen); in tre_fixncomp()
61 tre_fastncomp(fastmatch_t *preg, const char *regex, size_t n, int cflags) in tre_fastncomp() argument
69 ret = tre_convert_pattern(regex, n, &wregex, &wlen); in tre_fastncomp()
85 tre_fixcomp(fastmatch_t *preg, const char *regex, int cflags) in tre_fixcomp() argument
87 return tre_fixncomp(preg, regex, regex ? strlen(regex) : 0, cflags); in tre_fixcomp()
91 tre_fastcomp(fastmatch_t *preg, const char *regex, int cflags) in tre_fastcomp() argument
93 return tre_fastncomp(preg, regex, regex ? strlen(regex) : 0, cflags); in tre_fastcomp()
97 tre_fixwncomp(fastmatch_t *preg, const wchar_t *regex, size_t n, int cflags) in tre_fixwncomp() argument
99 return tre_compile_literal(preg, regex, n, cflags); in tre_fixwncomp()
103 tre_fastwncomp(fastmatch_t *preg, const wchar_t *regex, size_t n, int cflags) in tre_fastwncomp() argument
106 tre_compile_literal(preg, regex, n, cflags) : in tre_fastwncomp()
107 tre_compile_fast(preg, regex, n, cflags); in tre_fastwncomp()
111 tre_fixwcomp(fastmatch_t *preg, const wchar_t *regex, int cflags) in tre_fixwcomp() argument
113 return tre_fixwncomp(preg, regex, regex ? tre_strlen(regex) : 0, cflags); in tre_fixwcomp()
117 tre_fastwcomp(fastmatch_t *preg, const wchar_t *regex, int cflags) in tre_fastwcomp() argument
119 return tre_fastwncomp(preg, regex, regex ? tre_strlen(regex) : 0, cflags); in tre_fastwcomp()