Lines Matching refs:isdigit
365 if (isdigit(static_cast<unsigned char>(CurPtr[0]))) { in LexVar()
366 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexVar()
432 if (isdigit(static_cast<unsigned char>(CurPtr[0]))) { in LexHash()
433 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexHash()
458 if (!IntEnd && !isdigit(static_cast<unsigned char>(*CurPtr))) in LexIdentifier()
894 if (!isdigit(static_cast<unsigned char>(TokStart[0])) && in LexDigitOrNegative()
895 !isdigit(static_cast<unsigned char>(CurPtr[0]))) { in LexDigitOrNegative()
909 for (; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexDigitOrNegative()
933 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexDigitOrNegative()
936 if (isdigit(static_cast<unsigned char>(CurPtr[1])) || in LexDigitOrNegative()
938 isdigit(static_cast<unsigned char>(CurPtr[2])))) { in LexDigitOrNegative()
940 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexDigitOrNegative()
953 if (!isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexPositive()
957 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexPositive()
969 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexPositive()
972 if (isdigit(static_cast<unsigned char>(CurPtr[1])) || in LexPositive()
974 isdigit(static_cast<unsigned char>(CurPtr[2])))) { in LexPositive()
976 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexPositive()