Searched refs:kMaxAsciiCharCodeU (Results 1 - 6 of 6) sorted by relevance

/external/v8/src/
H A Dstring-search.h159 if (static_cast<unsigned int>(char_code) > String::kMaxAsciiCharCodeU) {
226 if (static_cast<uc16>(pattern_first_char) > String::kMaxAsciiCharCodeU) {
H A Dglobals.h234 const uint32_t kMaxAsciiCharCodeU = 0x7fu; member in namespace:v8::internal
H A Dscanner-base.h166 if (character < kMaxAsciiCharCodeU) {
H A Dobjects.h5444 static const unsigned kMaxAsciiCharCodeU = unibrow::Utf8::kMaxOneByteChar; member in class:v8::internal::String
5546 if (static_cast<uint8_t>(*chars) > kMaxAsciiCharCodeU) return false;
5555 if (*chars > kMaxAsciiCharCodeU) return false;
H A Dheap.cc2422 } else if ((c1 | c2) <= String::kMaxAsciiCharCodeU) { // We can do this
2423 ASSERT(IsPowerOf2(String::kMaxAsciiCharCodeU + 1)); // because of this.
H A Djsregexp.cc1406 if (ascii && c > String::kMaxAsciiCharCodeU) {

Completed in 393 milliseconds