Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/strings/
Dstring-search.h131 return c > String::kMaxOneByteCharCodeU; in exceedsOneByte()
/third_party/node/deps/v8/src/regexp/
Dregexp-compiler.cc178 STATIC_ASSERT(String::kMaxOneByteCharCodeU <= in MaxCodeUnit()
182 return one_byte ? String::kMaxOneByteCharCodeU : String::kMaxUtf16CodeUnitU; in MaxCodeUnit()
186 STATIC_ASSERT(base::bits::IsPowerOfTwo(String::kMaxOneByteCharCodeU + 1)); in CharMask()
846 if (one_byte && c > String::kMaxOneByteCharCodeU) { in EmitAtomNonLetter()
Dregexp-compiler-tonode.cc1534 static constexpr base::uc32 max_char = String::kMaxOneByteCharCodeU; in RationalizeConsecutiveAtoms()
/third_party/node/deps/v8/src/objects/
Dstring.h477 static const uint32_t kMaxOneByteCharCodeU = unibrow::Latin1::kMaxChar; variable