Searched refs:IsDecimalDigit (Results 1 - 11 of 11) sorted by relevance
/third_party/node/deps/v8/src/utils/ |
H A D | utils-inl.h | 37 if (!IsDecimalDigit(c)) return false; in TryAddArrayIndexChar() 50 if (!IsDecimalDigit(c)) return false; in TryAddIntegerIndexChar() 68 if (!IsDecimalDigit(ch)) return false; in StringToIndex()
|
/third_party/node/deps/v8/src/temporal/ |
H A D | temporal-parser.cc | 87 ((base::IsInRange(str[s], '0', '1') && IsDecimalDigit(str[s + 1])) || in IsHour() 103 (base::IsInRange(str[s], '0', '5') && IsDecimalDigit(str[s + 1])); in IsMinuteSecond() 165 if ((str.length() < (cur + 1)) || !IsDecimalDigit(str[cur])) return 0; in ScanFractionalPart() 167 while ((cur < str.length()) && ((cur - s) < 9) && IsDecimalDigit(str[cur])) { in ScanFractionalPart() 278 if (IsSign(str[s]) && IsDecimalDigit(str[s + 1]) && in ScanDateExtendedYear() 279 IsDecimalDigit(str[s + 2]) && IsDecimalDigit(str[s + 3]) && in ScanDateExtendedYear() 280 IsDecimalDigit(str[s + 4]) && IsDecimalDigit(str[s + 5]) && in ScanDateExtendedYear() 281 IsDecimalDigit(st in ScanDateExtendedYear() [all...] |
/third_party/node/deps/v8/src/strings/ |
H A D | char-predicates-inl.h | 29 return base::IsInRange(AsciiAlphaToLower(c), 'a', 'z') || IsDecimalDigit(c); in IsAlphaNumeric() 32 inline constexpr bool IsDecimalDigit(base::uc32 c) { in IsDecimalDigit() function 39 return IsDecimalDigit(c) || base::IsInRange(AsciiAlphaToLower(c), 'a', 'f'); in IsHexDigit()
|
H A D | char-predicates.h | 23 inline constexpr bool IsDecimalDigit(base::uc32 c);
|
H A D | string-hasher-inl.h | 60 if (IsDecimalDigit(chars[0]) && (length == 1 || chars[0] != '0')) { in HashSequentialString()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | scanner.cc | 649 return ScanDigitsWithNumericSeparators(&IsDecimalDigit, false); in ScanDecimalDigits() 651 while (IsDecimalDigit(c0_)) { in ScanDecimalDigits() 664 while (IsDecimalDigit(c0_) || c0_ == '_') { in ScanDecimalAsSmiWithNumericSeparators() 696 while (IsDecimalDigit(c0_)) { in ScanDecimalAsSmi() 740 if (!IsDecimalDigit(c0_)) return false; in ScanSignedInteger() 745 DCHECK(IsDecimalDigit(c0_)); // the first digit of the number or the fraction in ScanNumber() 864 if (IsDecimalDigit(c0_) || IsIdentifierStart(c0_)) { in ScanNumber()
|
/third_party/node/deps/v8/src/json/ |
H A D | json-parser.cc | 31 IsDecimalDigit(c) ? JsonToken::NUMBER : in GetOneCharJsonToken() 106 IsDecimalDigit(c) || in GetJsonScanFlags() 369 if (IsDecimalDigit(first)) { in ScanJsonPropertyKey() 898 std::find_if(cursor_, end_, [](Char c) { return !IsDecimalDigit(c); }); in AdvanceToNonDecimal() 923 if (V8_UNLIKELY(IsDecimalDigit(c))) { in ParseJsonNumber() 950 DCHECK(IsDecimalDigit(*smi_start)); in ParseJsonNumber() 960 if (!IsDecimalDigit(c)) { in ParseJsonNumber() 971 if (!IsDecimalDigit(c)) { in ParseJsonNumber()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-parser.cc | 1037 if (IsDecimalDigit(c)) { in ParseBackReferenceIndex() 1298 if (!IsDecimalDigit(current())) { in ParseIntervalQuantifier() 1302 while (IsDecimalDigit(current())) { in ParseIntervalQuantifier() 1308 } while (IsDecimalDigit(current())); in ParseIntervalQuantifier() 1325 while (IsDecimalDigit(current())) { in ParseIntervalQuantifier() 1330 } while (IsDecimalDigit(current())); in ParseIntervalQuantifier()
|
/third_party/node/deps/v8/src/date/ |
H A D | dateparser.h | 117 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); } in IsAsciiDigit()
|
/third_party/node/deps/v8/src/numbers/ |
H A D | conversions.cc | 1469 if (!IsDecimalDigit(buffer[0])) { in IsSpecialIndex() 1472 if (!IsDecimalDigit(buffer[1])) { in IsSpecialIndex() 1495 matches &= IsDecimalDigit(buffer[offset]); in IsSpecialIndex()
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-number-format.cc | 644 if (!IsDecimalDigit(c)) break; in RoundingIncrement() 723 while (index < skeleton.length() && IsDecimalDigit(skeleton[index])) { in FractionDigitsFromSkeleton()
|
Completed in 16 milliseconds