Lines Matching refs:isdigit
337 if (!isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexUIntID()
340 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexUIntID()
444 if (isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexHash()
461 if (!IntEnd && !isdigit(static_cast<unsigned char>(*CurPtr))) in LexIdentifier()
1088 if (!isdigit(static_cast<unsigned char>(TokStart[0])) && in LexDigitOrNegative()
1089 !isdigit(static_cast<unsigned char>(CurPtr[0]))) { in LexDigitOrNegative()
1103 for (; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexDigitOrNegative()
1107 if (isdigit(TokStart[0]) && CurPtr[0] == ':') { in LexDigitOrNegative()
1137 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexDigitOrNegative()
1140 if (isdigit(static_cast<unsigned char>(CurPtr[1])) || in LexDigitOrNegative()
1142 isdigit(static_cast<unsigned char>(CurPtr[2])))) { in LexDigitOrNegative()
1144 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexDigitOrNegative()
1158 if (!isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexPositive()
1162 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexPositive()
1174 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexPositive()
1177 if (isdigit(static_cast<unsigned char>(CurPtr[1])) || in LexPositive()
1179 isdigit(static_cast<unsigned char>(CurPtr[2])))) { in LexPositive()
1181 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexPositive()