Home | History | Annotate | Download | only in src

Lines Matching refs:utf8_bytes

3708   int utf8_bytes = 0;
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 =
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);
3853 if ((options & NO_NULL_TERMINATION) == 0) utf8_bytes++;
3854 if (utf8_bytes <= capacity) {