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 45 literal_bytes_(lb), pos_(0) {}
47 bool HasMore() { return pos_ < literal_bytes_.length(); }
48 uint16_t GetNext() { return literal_bytes_[pos_++]; }
51 Vector<const byte> literal_bytes_; member in class:v8::internal::__anon35743::OneByteStringStream
64 return String::cast(other)->IsOneByteEqualTo(string_->literal_bytes_);
66 Vector<const uint16_t>::cast(string_->literal_bytes_));
78 string_->literal_bytes_, string_->hash());
80 Vector<const uint16_t>::cast(string_->literal_bytes_), string_->hash());
102 if (literal_bytes_.length() == 0) {
117 OneByteStringStream stream(literal_bytes_);
    [all...]
ast-value-factory.h 84 if (is_one_byte()) return literal_bytes_.length();
85 return literal_bytes_.length() / 2;
88 int byte_length() const { return literal_bytes_.length(); }
96 return literal_bytes_.start();
103 if (is_one_byte()) return literal_bytes_[0];
105 reinterpret_cast<const uint16_t*>(literal_bytes_.start());
123 : AstString(true), hash_(hash), literal_bytes_(literal_bytes) {
135 Vector<const byte> literal_bytes_; member in class:v8::internal::final

Completed in 124 milliseconds