Home
last modified time | relevance | path

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

/external/v8/src/
Dchar-predicates-inl.h43 return IsInRange(AsciiAlphaToLower(c), 'a', 'z') || IsDecimalDigit(c); in IsAlphaNumeric()
46 inline bool IsDecimalDigit(uc32 c) { in IsDecimalDigit() function
53 return IsDecimalDigit(c) || IsInRange(AsciiAlphaToLower(c), 'a', 'f'); in IsHexDigit()
68 || IsDecimalDigit(c) in IsRegExpWord()
Dutils-inl.h47 if (!IsDecimalDigit(ch)) return false; in StringToArrayIndex()
52 if (!IsDecimalDigit(ch)) return false; in StringToArrayIndex()
Djson-parser.cc341 } while (IsDecimalDigit(c0_)); in ParseElement()
384 if (IsDecimalDigit(c0_)) { in ParseJsonObject()
481 if (IsDecimalDigit(c0_)) { in ParseJsonObject()
639 if (IsDecimalDigit(c0_)) return ReportUnexpectedCharacter(); in ParseJsonNumber()
648 } while (IsDecimalDigit(c0_)); in ParseJsonNumber()
656 if (!IsDecimalDigit(c0_)) return ReportUnexpectedCharacter(); in ParseJsonNumber()
659 } while (IsDecimalDigit(c0_)); in ParseJsonNumber()
664 if (!IsDecimalDigit(c0_)) return ReportUnexpectedCharacter(); in ParseJsonNumber()
667 } while (IsDecimalDigit(c0_)); in ParseJsonNumber()
856 if (!IsDecimalDigit(c0) || (position > position_ && index == 0)) { in ScanJsonString()
Dchar-predicates.h22 inline bool IsDecimalDigit(uc32 c);
Dstring-hasher-inl.h77 if (!IsDecimalDigit(c)) { in UpdateIndex()
Dconversions.cc1362 if (!IsDecimalDigit(buffer[0])) { in IsSpecialIndex()
1365 if (!IsDecimalDigit(buffer[1])) { in IsSpecialIndex()
1388 matches &= IsDecimalDigit(buffer[offset]); in IsSpecialIndex()
Ddateparser.h108 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); } in IsAsciiDigit()
/external/v8/src/parsing/
Dscanner.cc723 if (IsDecimalDigit(c0_)) { in Scan()
750 } else if (IsDecimalDigit(c0_)) { in Scan()
1114 return ScanDigitsWithNumericSeparators(&IsDecimalDigit, false); in ScanDecimalDigits()
1116 while (IsDecimalDigit(c0_)) { in ScanDecimalDigits()
1124 while (IsDecimalDigit(c0_) || c0_ == '_') { in ScanDecimalAsSmiWithNumericSeparators()
1156 while (IsDecimalDigit(c0_)) { in ScanDecimalAsSmi()
1236 if (!IsDecimalDigit(c0_)) return false; in ScanSignedInteger()
1241 DCHECK(IsDecimalDigit(c0_)); // the first digit of the number or the fraction in ScanNumber()
1361 if (IsDecimalDigit(c0_) || unicode_cache_->IsIdentifierStart(c0_)) { in ScanNumber()
1551 if (IsDecimalDigit(c0_) || IsInRange(c0_, 'A', 'Z') || c0_ == '$') { in ScanIdentifierOrKeywordInner()
/external/v8/src/regexp/
Dregexp-parser.cc791 if (IsDecimalDigit(c)) { in ParseBackReferenceIndex()
1036 if (!IsDecimalDigit(current())) { in ParseIntervalQuantifier()
1040 while (IsDecimalDigit(current())) { in ParseIntervalQuantifier()
1046 } while (IsDecimalDigit(current())); in ParseIntervalQuantifier()
1063 while (IsDecimalDigit(current())) { in ParseIntervalQuantifier()
1068 } while (IsDecimalDigit(current())); in ParseIntervalQuantifier()
/external/v8/src/asmjs/
Dasm-scanner.cc428 return ch == '.' || IsDecimalDigit(ch); in IsNumberStart()