Searched refs:is_one_byte_ (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/parsing/ |
D | scanner.h | 158 LiteralBuffer() : is_one_byte_(true), position_(0), backing_store_() { } in LiteralBuffer() 164 DCHECK(is_one_byte_); in INLINE() 173 if (is_one_byte_) { in INLINE() 195 bool is_one_byte() const { return is_one_byte_; } in is_one_byte() 203 DCHECK(!is_one_byte_); in two_byte_literal() 211 DCHECK(is_one_byte_); in one_byte_literal() 218 return is_one_byte_ ? position_ : (position_ >> 1); in length() 222 position_ -= delta * (is_one_byte_ ? kOneByteSize : kUC16Size); in ReduceLength() 227 is_one_byte_ = true; in Reset() 236 is_one_byte_ = other->is_one_byte_; in CopyFrom() [all …]
|
/external/v8/src/ast/ |
D | ast-value-factory.h | 68 if (is_one_byte_) in length() 83 bool is_one_byte() const { return is_one_byte_; } in is_one_byte() 86 if (is_one_byte_) in FirstCharacter() 104 : is_one_byte_(is_one_byte), literal_bytes_(literal_bytes), hash_(hash) {} in AstRawString() 107 : is_one_byte_(true), in AstRawString() 110 bool is_one_byte_; variable
|
D | ast-value-factory.cc | 61 if (string_->is_one_byte_) in IsMatch() 74 if (string_->is_one_byte_) in AsHandle() 100 if (!is_one_byte_ || literal_bytes_.length() == 0 || in AsArrayIndex() 110 if (is_one_byte_ && literal_bytes_.length() == length) { in IsOneByteEqualTo()
|
/external/v8/src/ |
D | string-builder.h | 199 is_one_byte_(subject->IsOneByteRepresentation()) { in ReplacementStringBuilder() 237 is_one_byte_ = false; in AddString() 266 bool is_one_byte_; variable
|
D | string-builder.cc | 20 if (is_one_byte_) { in ToString()
|
D | api.cc | 4759 ContainsOnlyOneByteHelper() : is_one_byte_(true) {} in ContainsOnlyOneByteHelper() 4762 if (cons_string == NULL) return is_one_byte_; in Check() 4788 is_one_byte_ = false; in VisitTwoByteString() 4797 if ((acc & kOneByteMask) != 0) is_one_byte_ = false; in VisitTwoByteString() 4807 if (!is_one_byte_) return false; in CheckCons() 4812 if (!is_one_byte_) return false; in CheckCons() 4823 if (!is_one_byte_) return false; in CheckCons() 4839 return is_one_byte_; in CheckCons() 4841 bool is_one_byte_; member in v8::ContainsOnlyOneByteHelper
|
D | objects-inl.h | 485 if (is_one_byte_) { in Get() 495 DCHECK_EQ(is_one_byte_, sizeof(Char) == 1); in Get() 3907 return is_one_byte_ ? *buffer8_++ : *buffer16_++; in GetNext() 3912 : is_one_byte_(false) { in StringCharacterStream() 3943 is_one_byte_ = true; in VisitOneByteString() 3951 is_one_byte_ = false; in VisitTwoByteString()
|
D | objects.cc | 10601 is_one_byte_(true), in FlatStringReader() 10614 is_one_byte_ = content.IsOneByte(); in PostGarbageCollection() 10615 if (is_one_byte_) { in PostGarbageCollection() 10994 State() : is_one_byte_(true), length_(0), buffer8_(NULL) {} in State() 11007 is_one_byte_ = true; in VisitOneByteString() 11013 is_one_byte_ = false; in VisitTwoByteString() 11022 if (is_one_byte_) { in Advance() 11039 bool is_one_byte_; member in v8::internal::StringComparator::State 11068 if (state_1_.is_one_byte_) { in Equals() 11069 if (state_2_.is_one_byte_) { in Equals() [all …]
|
D | objects.h | 9445 bool is_one_byte_; variable 9513 bool is_one_byte_; variable
|
/external/v8/src/regexp/ |
D | jsregexp.h | 1490 is_one_byte_(is_one_byte), in Analysis() 1517 bool is_one_byte_; variable
|
D | jsregexp.cc | 6329 that->MakeCaseIndependent(isolate(), is_one_byte_); in VisitText()
|