Searched defs:ascii_isdigit (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Support/
H A DStringRef.cpp35 static bool ascii_isdigit(char x) { function
76 if (ascii_isdigit(Data[I]) && ascii_isdigit(RHS.Data[I])) {
81 bool ld = J < Length && ascii_isdigit(Data[J]);
82 bool rd = J < RHS.Length && ascii_isdigit(RHS.Data[J]);
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h58 // ascii_isdigit()
68 inline bool ascii_isdigit(char c) { function in namespace:google::protobuf
/external/llvm/include/llvm/TableGen/
H A DRecord.h1743 static bool ascii_isdigit(char x) { return x >= '0' && x <= '9'; } function in struct:llvm::LessRecordRegister
1755 bool isDigitPart = ascii_isdigit(Curr[0]);
1757 bool isDigit = ascii_isdigit(Curr[I]);
1762 isDigitPart = ascii_isdigit(Curr[I]);

Completed in 331 milliseconds