Searched refs:IsDigit (Results 1 – 7 of 7) sorted by relevance
80 (!IsDigit(prev_char) && IsDigit(*p)); in ConvertIdentifierNameToWords()
276 while (back > file_line_info && IsDigit(*back)) --back; in ParseFileLineInfo()277 if (*back != ':' || !IsDigit(back[1])) break; in ParseFileLineInfo()
244 while (IsDigit(*nptr)) { in internal_simple_strtoll()
431 INLINE bool IsDigit(int c) { in IsDigit() function
976 if (str.empty() || !IsDigit(str[0])) { in ParseNaturalNumber()
202 #define IsDigit(X) isdigit((unsigned char)X) macro600 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()13886 if( !IsDigit(z[0]) ) return 0; in testcase_glob()13888 while( IsDigit(z[0]) ){ z++; } in testcase_glob()[all …]
2404 inline bool IsDigit(char ch) {