Searched refs:IsDecimalDigit (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/
H A Dchar-predicates-inl.h62 inline bool IsDecimalDigit(uc32 c) { function in namespace:v8::internal
70 return IsDecimalDigit(c) || IsInRange(AsciiAlphaToLower(c), 'a', 'f');
76 || IsDecimalDigit(c)
H A Dchar-predicates.h41 inline bool IsDecimalDigit(uc32 c);
H A Ddateparser.h146 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); }
H A Dparser.cc5509 if (IsDecimalDigit(c)) {
5548 if (!IsDecimalDigit(current())) {
5552 while (IsDecimalDigit(current())) {
5558 } while (IsDecimalDigit(current()));
5575 while (IsDecimalDigit(current())) {
5580 } while (IsDecimalDigit(current()));

Completed in 118 milliseconds