Home
last modified time | relevance | path

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

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