Searched refs:is_one_byte_ (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/parsing/ |
D | scanner.h | 419 : position_(0), is_one_byte_(true), is_used_(false), backing_store_() {} in LiteralBuffer() 431 if (is_one_byte_) { in AddChar() 441 bool is_one_byte() const { return is_one_byte_; } in is_one_byte() 450 DCHECK(!is_one_byte_); in two_byte_literal() 459 DCHECK(is_one_byte_); in one_byte_literal() 465 int length() const { return is_one_byte_ ? position_ : (position_ >> 1); } in length() 478 is_one_byte_ = true; in Drop() 498 DCHECK(is_one_byte_); in AddOneByteChar() 510 bool is_one_byte_; variable
|
D | scanner.cc | 84 DCHECK(is_one_byte_); in ConvertToTwoByte() 104 is_one_byte_ = false; in ConvertToTwoByte() 108 DCHECK(!is_one_byte_); in AddTwoByteChar()
|
/external/v8/src/ |
D | string-builder.cc | 172 is_one_byte_(subject->IsOneByteRepresentation()) { in ReplacementStringBuilder() 187 is_one_byte_ = false; in AddString() 199 if (is_one_byte_) { in ToString()
|
D | string-builder-inl.h | 112 bool is_one_byte_; variable
|
D | api.cc | 5291 ContainsOnlyOneByteHelper() : is_one_byte_(true) {} in ContainsOnlyOneByteHelper() 5294 if (cons_string == nullptr) return is_one_byte_; in Check() 5320 is_one_byte_ = false; in VisitTwoByteString() 5329 if ((acc & kOneByteMask) != 0) is_one_byte_ = false; in VisitTwoByteString() 5339 if (!is_one_byte_) return false; in CheckCons() 5344 if (!is_one_byte_) return false; in CheckCons() 5355 if (!is_one_byte_) return false; in CheckCons() 5371 return is_one_byte_; in CheckCons() 5373 bool is_one_byte_; member in v8::ContainsOnlyOneByteHelper
|
D | objects.cc | 11192 is_one_byte_(true), in FlatStringReader() 11205 is_one_byte_ = content.IsOneByte(); in PostGarbageCollection() 11206 if (is_one_byte_) { in PostGarbageCollection() 11584 State() : is_one_byte_(true), length_(0), buffer8_(nullptr) {} in State() 11597 is_one_byte_ = true; in VisitOneByteString() 11603 is_one_byte_ = false; in VisitTwoByteString() 11612 if (is_one_byte_) { in Advance() 11629 bool is_one_byte_; member in v8::internal::StringComparator::State 11658 if (state_1_.is_one_byte_) { in Equals() 11659 if (state_2_.is_one_byte_) { in Equals() [all …]
|
/external/v8/src/ast/ |
D | ast-value-factory.h | 62 bool is_one_byte() const { return is_one_byte_; } in is_one_byte() 91 is_one_byte_(is_one_byte) {} in AstRawString() 119 bool is_one_byte_; variable
|
/external/v8/src/objects/ |
D | string-inl.h | 179 if (is_one_byte_) { in Get() 188 DCHECK_EQ(is_one_byte_, sizeof(Char) == 1); in Get() 671 return is_one_byte_ ? *buffer8_++ : *buffer16_++; in GetNext() 675 : is_one_byte_(false) { in StringCharacterStream() 703 is_one_byte_ = true; in VisitOneByteString() 710 is_one_byte_ = false; in VisitTwoByteString()
|
D | string.h | 848 bool is_one_byte_; variable 914 bool is_one_byte_; variable
|
/external/v8/src/regexp/ |
D | jsregexp.h | 1466 : isolate_(isolate), is_one_byte_(is_one_byte), error_message_(nullptr) {} in Analysis() 1488 bool is_one_byte_; variable
|
D | jsregexp.cc | 6336 that->MakeCaseIndependent(isolate(), is_one_byte_); in VisitText()
|