Lines Matching refs:IsDigit
202 #define IsDigit(X) isdigit((unsigned char)X) macro
600 if( !IsDigit(*z) ){ in isNumber()
605 while( IsDigit(*z) ){ z++; } in isNumber()
608 if( !IsDigit(*z) ) return 0; in isNumber()
609 while( IsDigit(*z) ){ z++; } in isNumber()
615 if( !IsDigit(*z) ) return 0; in isNumber()
616 while( IsDigit(*z) ){ z++; } in isNumber()
776 while( IsDigit(zArg[0]) ){ in integerValue()
13885 if( (z[0]=='-' || z[0]=='+') && IsDigit(z[1]) ) z++; in testcase_glob()
13886 if( !IsDigit(z[0]) ) return 0; in testcase_glob()
13888 while( IsDigit(z[0]) ){ z++; } in testcase_glob()
16925 }else if( IsDigit(z[0]) ){ in do_meta_command()