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

  /external/chromium_org/v8/src/
ast-value-factory.cc 42 literal_bytes_(lb), pos_(0) {}
44 bool HasMore() { return pos_ < literal_bytes_.length(); }
45 uint16_t GetNext() { return literal_bytes_[pos_++]; }
48 Vector<const byte> literal_bytes_; member in class:v8::internal::__anon942::OneByteStringStream
61 return String::cast(other)->IsOneByteEqualTo(string_->literal_bytes_);
63 Vector<const uint16_t>::cast(string_->literal_bytes_));
77 string_->literal_bytes_, string_->hash());
79 Vector<const uint16_t>::cast(string_->literal_bytes_), string_->hash());
89 if (literal_bytes_.length() == 0) {
101 if (!is_one_byte_ || literal_bytes_.length() == 0 |
    [all...]
ast-value-factory.h 69 return literal_bytes_.length();
70 return literal_bytes_.length() / 2;
79 return literal_bytes_.start();
85 return literal_bytes_[0];
87 reinterpret_cast<const uint16_t*>(literal_bytes_.start());
103 : is_one_byte_(is_one_byte), literal_bytes_(literal_bytes), hash_(hash) {}
112 Vector<const byte> literal_bytes_; member in class:v8::internal::AstRawString

Completed in 42 milliseconds