Home | History | Annotate | Download | only in parsing

Lines Matching defs:is_one_byte_

368     LiteralBuffer() : is_one_byte_(true), position_(0), backing_store_() {}
378 if (is_one_byte_ &&
386 bool is_one_byte() const { return is_one_byte_; }
394 DCHECK(!is_one_byte_);
402 DCHECK(is_one_byte_);
407 int length() const { return is_one_byte_ ? position_ : (position_ >> 1); }
410 position_ -= delta * (is_one_byte_ ? kOneByteSize : kUC16Size);
415 is_one_byte_ = true;
435 DCHECK(is_one_byte_);
446 bool is_one_byte_;