Searched refs:ascii_isdigit (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/Support/
H A DStringRef.cpp36 static bool ascii_isdigit(char x) { function
77 if (ascii_isdigit(Data[I]) && ascii_isdigit(RHS.Data[I])) {
82 bool ld = J < Length && ascii_isdigit(Data[J]);
83 bool rd = J < RHS.Length && ascii_isdigit(RHS.Data[J]);
/freebsd-10.2-release/contrib/llvm/include/llvm/TableGen/
H A DRecord.h1736 static bool ascii_isdigit(char x) { return x >= '0' && x <= '9'; } function in struct:llvm::LessRecordRegister
1748 bool isDigitPart = ascii_isdigit(Curr[0]);
1750 bool isDigit = ascii_isdigit(Curr[I]);
1755 isDigitPart = ascii_isdigit(Curr[I]);

Completed in 111 milliseconds