Home
last modified time | relevance | path

Searched refs:IsAlphaNumeric (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/strings/
Dchar-predicates-inl.h25 return IsAlphaNumeric(c) || c == '$' || c == '_'; in IsAsciiIdentifier()
28 inline constexpr bool IsAlphaNumeric(base::uc32 c) { in IsAlphaNumeric() function
73 return IsAlphaNumeric(c) || c == '_'; in IsRegExpWord()
Dchar-predicates.h22 inline constexpr bool IsAlphaNumeric(base::uc32 c);
Duri.cc214 if (IsAlphaNumeric(c)) { in IsUnescapePredicateInUriComponent()
407 if (IsAlphaNumeric(c)) { in IsNotEscaped()
/third_party/node/deps/v8/src/temporal/
Dtemporal-parser.cc658 while ((cur < str.length()) && IsAlphaNumeric(str[cur])) cur++; in SCAN_EITHER_FORWARD()