Lines Matching refs:utf8_pos_
60 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()
117 utf8_buffer_[utf8_pos_++] = c; in AppendByte()
121 int space = kUtf8BufferSize - utf8_pos_; in AppendInt()
123 Vector<char> buffer(utf8_buffer_ + utf8_pos_, space); in AppendInt()
125 if (size > 0 && utf8_pos_ + size <= kUtf8BufferSize) { in AppendInt()
126 utf8_pos_ += size; in AppendInt()
131 int space = kUtf8BufferSize - utf8_pos_; in AppendHex()
133 Vector<char> buffer(utf8_buffer_ + utf8_pos_, space); in AppendHex()
135 if (size > 0 && utf8_pos_ + size <= kUtf8BufferSize) { in AppendHex()
136 utf8_pos_ += size; in AppendHex()
141 int size() const { return utf8_pos_; } in size()
147 int utf8_pos_; member in v8::internal::CodeEventLogger::NameBuffer