Lines Matching refs:TRexChar
2712 #define TRexChar unsigned short macro
2718 #define TRexChar char
2738 const TRexChar *begin;
2742 TREX_API TRex *trex_compile(const TRexChar *pattern, const TRexChar **error, int flags);
2744 TREX_API TRexBool trex_match(TRex* exp, const TRexChar* text);
2745 TREX_API TRexBool trex_search(TRex* exp, const TRexChar* text, const TRexChar** out_begin, const TR…
2746 …x_searchrange(TRex* exp, const TRexChar* text_begin, const TRexChar* text_end, const TRexChar** ou…
2774 const TRexChar *error = NULL; in arg_rex_scanfn()
2920 const TRexChar *error = NULL; in arg_rexn()
3012 static const TRexChar *g_nnames[] =
3055 const TRexChar *_eol;
3056 const TRexChar *_bol;
3057 const TRexChar *_p;
3067 const TRexChar **_error;
3094 static void trex_error(TRex *exp,const TRexChar *error) in trex_error()
3106 static TRexChar trex_escapechar(TRex *exp) in trex_escapechar()
3131 TRexChar t; in trex_charnode()
3337 static TRexBool trex_matchcclass(int cclass,TRexChar c) in trex_matchcclass()
3365 static TRexBool trex_matchclass(TRex* exp,TRexNode *node,TRexChar c) in trex_matchclass()
3398 static const TRexChar *trex_matchnode(TRex* exp,TRexNode *node,const TRexChar *str,TRexNode *next) in trex_matchnode()
3407 const TRexChar *s=str, *good = str; in trex_matchnode()
3418 const TRexChar *stop; in trex_matchnode()
3454 const TRexChar *asd = str; in trex_matchnode()
3476 const TRexChar *cur = str; in trex_matchnode()
3552 TRex *trex_compile(const TRexChar *pattern,const TRexChar **error,int flags) in trex_compile()
3563 exp->_nallocated = (int)scstrlen(pattern) * sizeof(TRexChar); in trex_compile()
3620 TRexBool trex_match(TRex* exp,const TRexChar* text) in trex_match()
3622 const TRexChar* res = NULL; in trex_match()
3632 …rex_searchrange(TRex* exp,const TRexChar* text_begin,const TRexChar* text_end,const TRexChar** out… in trex_searchrange()
3634 const TRexChar *cur = NULL; in trex_searchrange()
3661 TRexBool trex_search(TRex* exp,const TRexChar* text, const TRexChar** out_begin, const TRexChar** o… in trex_search()