Lines Matching refs:_matches
3064 TRexMatch *_matches; member
3480 exp->_matches[capture].begin = cur; in trex_matchnode()
3493 exp->_matches[capture].begin = 0; in trex_matchnode()
3494 exp->_matches[capture].len = 0; in trex_matchnode()
3501 exp->_matches[capture].len = (int)(cur - exp->_matches[capture].begin); in trex_matchnode()
3567 exp->_matches = 0; in trex_compile()
3596 exp->_matches = (TRexMatch *) malloc(exp->_nsubexpr * sizeof(TRexMatch)); in trex_compile()
3597 if (!exp->_matches) break; in trex_compile()
3598 memset(exp->_matches,0,exp->_nsubexpr * sizeof(TRexMatch)); in trex_compile()
3615 if(exp->_matches) free(exp->_matches); in trex_free()
3674 *subexp = exp->_matches[n]; in trex_getsubexp()