Searched refs:literal_bytes_ (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/ast/
H A Dast-value-factory.cc43 literal_bytes_(lb), pos_(0) {}
45 bool HasMore() { return pos_ < literal_bytes_.length(); }
46 uint16_t GetNext() { return literal_bytes_[pos_++]; }
49 Vector<const byte> literal_bytes_; member in class:v8::internal::__anon18461::OneByteStringStream
62 return String::cast(other)->IsOneByteEqualTo(string_->literal_bytes_);
64 Vector<const uint16_t>::cast(string_->literal_bytes_));
76 string_->literal_bytes_, string_->hash());
78 Vector<const uint16_t>::cast(string_->literal_bytes_), string_->hash());
88 if (literal_bytes_.length() == 0) {
100 if (!is_one_byte_ || literal_bytes_
[all...]
H A Dast-value-factory.h69 return literal_bytes_.length();
70 return literal_bytes_.length() / 2;
73 int byte_length() const { return literal_bytes_.length(); }
81 return literal_bytes_.start();
87 return literal_bytes_[0];
89 reinterpret_cast<const uint16_t*>(literal_bytes_.start());
104 : is_one_byte_(is_one_byte), literal_bytes_(literal_bytes), hash_(hash) {}
113 Vector<const byte> literal_bytes_; member in class:v8::internal::final

Completed in 173 milliseconds