Home
last modified time | relevance | path

Searched refs:utf8_pos_ (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/
Dlog.cc60 utf8_pos_ = 0; in Reset()
91 for (int i = 0; i < uc16_length && utf8_pos_ < kUtf8BufferSize; ++i) { in AppendString()
94 utf8_buffer_[utf8_pos_++] = static_cast<char>(c); in AppendString()
97 if (utf8_pos_ + char_length > kUtf8BufferSize) break; in AppendString()
98 unibrow::Utf8::Encode(utf8_buffer_ + utf8_pos_, c, previous); in AppendString()
99 utf8_pos_ += char_length; in AppendString()
106 size = Min(size, kUtf8BufferSize - utf8_pos_); in AppendBytes()
107 MemCopy(utf8_buffer_ + utf8_pos_, bytes, size); in AppendBytes()
108 utf8_pos_ += size; in AppendBytes()
116 if (utf8_pos_ >= kUtf8BufferSize) return; in AppendByte()
[all …]