Home | History | Annotate | Download | only in parsing

Lines Matching defs:buffer_

268     buffer_start_ = &buffer_[0];
278 i::CopyCharsUnsigned(buffer_, range.start, length);
279 buffer_end_ = &buffer_[length];
287 uc16 buffer_[kBufferSize];
378 // them into buffer_[0..]. It returns the number of characters stored.
382 // The base class' buffer_start_ should always point to buffer_.
383 uc16 buffer_[kBufferSize];
387 : Utf16CharacterStream(buffer_, buffer_, buffer_, 0) {}
390 DCHECK_EQ(buffer_start_, buffer_);
394 buffer_cursor_ = buffer_;
395 buffer_end_ = buffer_ + FillBuffer(position);
460 // Within the current chunk, fill the buffer_ (while it has capacity).
514 // The buffer_ is writable, but buffer_*_ members are const. So we get a
516 uint16_t* cursor = buffer_ + (buffer_end_ - buffer_start_);
656 buffer_cursor_ = buffer_;
657 buffer_end_ = buffer_;