Home
last modified time | relevance | path

Searched refs:IsDecimalDigit (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dchar-predicates-inl.h62 inline bool IsDecimalDigit(uc32 c) { in IsDecimalDigit() function
70 return IsDecimalDigit(c) || IsInRange(AsciiAlphaToLower(c), 'a', 'f'); in IsHexDigit()
76 || IsDecimalDigit(c) in IsRegExpWord()
Dscanner-base.cc384 if (IsDecimalDigit(c0_)) { in Scan()
438 } else if (IsDecimalDigit(c0_)) { in Scan()
546 while (IsDecimalDigit(c0_)) in ScanDecimalDigits()
552 ASSERT(IsDecimalDigit(c0_)); // the first digit of the number or the fraction in ScanNumber()
615 if (!IsDecimalDigit(c0_)) { in ScanNumber()
626 if (IsDecimalDigit(c0_) || unicode_cache_->IsIdentifierStart(c0_)) in ScanNumber()
Dchar-predicates.h39 inline bool IsDecimalDigit(uc32 c);
Ddateparser.h146 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); } in IsAsciiDigit()
Dparser.cc4687 if (IsDecimalDigit(c)) { in ParseBackReferenceIndex()
4726 if (!IsDecimalDigit(current())) { in ParseIntervalQuantifier()
4730 while (IsDecimalDigit(current())) { in ParseIntervalQuantifier()
4736 } while (IsDecimalDigit(current())); in ParseIntervalQuantifier()
4753 while (IsDecimalDigit(current())) { in ParseIntervalQuantifier()
4758 } while (IsDecimalDigit(current())); in ParseIntervalQuantifier()