Home | History | Annotate | Download | only in src

Lines Matching refs:stream_length

14                             const uint8_t* stream, size_t stream_length) {
22 while (stream_length != 0) {
24 uint32_t character = Utf8::ValueOf(stream, stream_length, &cursor);
25 DCHECK(cursor > 0 && cursor <= stream_length);
27 stream_length -= cursor;
45 unbuffered_length_ = stream_length;
55 unbuffered_length_ = stream_length + cursor;
62 size_t stream_length, uint16_t* data,
66 uint32_t character = Utf8::ValueOf(stream, stream_length, &cursor);
70 DCHECK(stream_length >= cursor);
71 stream_length -= cursor;