HomeSort by relevance Sort by last modified time
    Searched refs:literal_bytes_ (Results 1 - 2 of 2) sorted by null

  /external/v8/src/ast/
ast-value-factory.cc 43 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::__anon34036::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());
100 if (literal_bytes_.length() == 0) {
115 OneByteStringStream stream(literal_bytes_);
    [all...]
ast-value-factory.h 82 if (is_one_byte()) return literal_bytes_.length();
83 return literal_bytes_.length() / 2;
86 int byte_length() const { return literal_bytes_.length(); }
94 return literal_bytes_.start();
101 if (is_one_byte()) return literal_bytes_[0];
103 reinterpret_cast<const uint16_t*>(literal_bytes_.start());
118 : AstString(true), hash_(hash), literal_bytes_(literal_bytes) {
130 Vector<const byte> literal_bytes_; member in class:v8::internal::final

Completed in 753 milliseconds