Lines Matching refs:isdigit
315 if (isdigit(CurPtr[0])) { in LexAt()
316 for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr) in LexAt()
379 if (isdigit(CurPtr[0])) { in LexPercent()
380 for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr) in LexPercent()
440 if (!IntEnd && !isdigit(*CurPtr)) IntEnd = CurPtr; in LexIdentifier()
755 if (!isdigit(TokStart[0]) && !isdigit(CurPtr[0])) { in LexDigitOrNegative()
769 for (; isdigit(CurPtr[0]); ++CurPtr) in LexDigitOrNegative()
806 while (isdigit(CurPtr[0])) ++CurPtr; in LexDigitOrNegative()
809 if (isdigit(CurPtr[1]) || in LexDigitOrNegative()
810 ((CurPtr[1] == '-' || CurPtr[1] == '+') && isdigit(CurPtr[2]))) { in LexDigitOrNegative()
812 while (isdigit(CurPtr[0])) ++CurPtr; in LexDigitOrNegative()
824 if (!isdigit(CurPtr[0])) in LexPositive()
828 for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr) in LexPositive()
840 while (isdigit(CurPtr[0])) ++CurPtr; in LexPositive()
843 if (isdigit(CurPtr[1]) || in LexPositive()
844 ((CurPtr[1] == '-' || CurPtr[1] == '+') && isdigit(CurPtr[2]))) { in LexPositive()
846 while (isdigit(CurPtr[0])) ++CurPtr; in LexPositive()