Home | History | Annotate | Download | only in src

Lines Matching refs:position_

175   LiteralBuffer() : is_ascii_(true), position_(0), backing_store_() { }
184 if (position_ >= backing_store_.length()) ExpandBuffer();
187 backing_store_[position_] = static_cast<byte>(code_unit);
188 position_ += kASCIISize;
194 *reinterpret_cast<uc16*>(&backing_store_[position_]) = code_unit;
195 position_ += kUC16Size;
202 ASSERT((position_ & 0x1) == 0);
205 position_ >> 1);
212 position_);
216 return is_ascii_ ? position_ : (position_ >> 1);
220 position_ = 0;
237 memcpy(new_store.start(), backing_store_.start(), position_);
245 int new_content_size = position_ * kUC16Size;
255 for (int i = position_ - 1; i >= 0; i--) {
262 position_ = new_content_size;
267 int position_;