HomeSort by relevance Sort by last modified time
    Searched refs:IsDecimalDigit (Results 1 - 5 of 5) sorted by null

  /external/v8/src/
char-predicates-inl.h 39 inline bool IsDecimalDigit(uc32 c) {
47 return IsDecimalDigit(c) || IsInRange(AsciiAlphaToLower(c), 'a', 'f');
65 || IsDecimalDigit(c)
char-predicates.h 18 inline bool IsDecimalDigit(uc32 c);
scanner.cc 585 if (IsDecimalDigit(c0_)) {
639 } else if (IsDecimalDigit(c0_)) {
781 while (IsDecimalDigit(c0_))
787 DCHECK(IsDecimalDigit(c0_)); // the first digit of the number or the fraction
872 if (!IsDecimalDigit(c0_)) {
883 if (IsDecimalDigit(c0_) || unicode_cache_->IsIdentifierStart(c0_))
    [all...]
dateparser.h 123 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); }
parser.cc     [all...]

Completed in 183 milliseconds