Searched refs:utf8_bytes (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dapi.cc3708 int utf8_bytes = 0; local
3713 return utf8_bytes + end - start;
3727 return static_cast<int>(utf8_bytes + current - buffer);
3740 return static_cast<int>(utf8_bytes + current - buffer);
3775 utf8_bytes += extra_utf8_bytes;
3827 int utf8_bytes = local
3835 if (utf8_bytes >= 0) {
3838 (capacity > utf8_bytes || capacity == -1)) {
3839 buffer[utf8_bytes++] = '\0';
3842 return utf8_bytes;
3852 int utf8_bytes = i::Utf8Length(str); local
[all...]
H A Dobjects.cc6054 int utf8_bytes = 0; local
6058 utf8_bytes += unibrow::Utf8::Length(character, last);
6063 *length_return = utf8_bytes;
6066 char* result = NewArray<char>(utf8_bytes + 1);

Completed in 105 milliseconds