Home | History | Annotate | Download | only in parsing

Lines Matching refs:is_one_byte_

158   LiteralBuffer() : is_one_byte_(true), position_(0), backing_store_() { }
164 DCHECK(is_one_byte_);
173 if (is_one_byte_) {
195 bool is_one_byte() const { return is_one_byte_; }
203 DCHECK(!is_one_byte_);
211 DCHECK(is_one_byte_);
218 return is_one_byte_ ? position_ : (position_ >> 1);
222 position_ -= delta * (is_one_byte_ ? kOneByteSize : kUC16Size);
227 is_one_byte_ = true;
236 is_one_byte_ = other->is_one_byte_;
268 DCHECK(is_one_byte_);
288 is_one_byte_ = false;
291 bool is_one_byte_;