• Home
  • Raw
  • Download

Lines Matching refs:TRex_False

2730 #define TRex_False 0  macro
2776 TRexBool is_match = TRex_False; in arg_rex_scanfn()
3261 ret = trex_charnode(exp,TRex_False); in trex_element()
3266 TRexBool isgreedy = TRex_False; in trex_element()
3340 case 'a': return isalpha(c)?TRex_True:TRex_False; in trex_matchcclass()
3341 case 'A': return !isalpha(c)?TRex_True:TRex_False; in trex_matchcclass()
3342 case 'w': return (isalnum(c) || c == '_')?TRex_True:TRex_False; in trex_matchcclass()
3343 case 'W': return (!isalnum(c) && c != '_')?TRex_True:TRex_False; in trex_matchcclass()
3344 case 's': return ISSPACE(c)?TRex_True:TRex_False; in trex_matchcclass()
3345 case 'S': return !ISSPACE(c)?TRex_True:TRex_False; in trex_matchcclass()
3346 case 'd': return isdigit(c)?TRex_True:TRex_False; in trex_matchcclass()
3347 case 'D': return !isdigit(c)?TRex_True:TRex_False; in trex_matchcclass()
3348 case 'x': return isxdigit(c)?TRex_True:TRex_False; in trex_matchcclass()
3349 case 'X': return !isxdigit(c)?TRex_True:TRex_False; in trex_matchcclass()
3350 case 'c': return iscntrl(c)?TRex_True:TRex_False; in trex_matchcclass()
3351 case 'C': return !iscntrl(c)?TRex_True:TRex_False; in trex_matchcclass()
3352 case 'p': return ispunct(c)?TRex_True:TRex_False; in trex_matchcclass()
3353 case 'P': return !ispunct(c)?TRex_True:TRex_False; in trex_matchcclass()
3354 case 'l': return islower(c)?TRex_True:TRex_False; in trex_matchcclass()
3355 case 'u': return isupper(c)?TRex_True:TRex_False; in trex_matchcclass()
3357 return TRex_False; /*cannot happen*/ in trex_matchcclass()
3395 return TRex_False; in trex_matchclass()
3523 …odes[node->left],*str)?(type == OP_CLASS?TRex_True:TRex_False):(type == OP_NCLASS?TRex_True:TRex_F… in trex_matchnode()
3628 return TRex_False; in trex_match()
3636 if(text_begin >= text_end) return TRex_False; in trex_searchrange()
3652 return TRex_False; in trex_searchrange()
3673 if( n<0 || n >= exp->_nsubexpr) return TRex_False; in trex_getsubexp()