Searched defs:utf8_bytes (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dvalue-serializer.cc1177 Vector<const uint8_t> utf8_bytes; local
1181 !ReadRawBytes(utf8_length).To(&utf8_bytes)) {
1185 Vector<const char>::cast(utf8_bytes), pretenure_);
H A Dapi.cc5861 int utf8_bytes = v8::Utf8Length(*str, isolate); local
5862 if (utf8_bytes <= capacity) {
5864 if (utf8_bytes == string_length) {
5867 if (write_null && (utf8_bytes+1 <= capacity)) {
5872 if (write_null && (utf8_bytes+1 > capacity)) {
H A Dobjects.cc10449 int utf8_bytes = 0; local
10453 utf8_bytes += unibrow::Utf8::Length(character, last);
10458 *length_return = utf8_bytes;
10461 char* result = NewArray<char>(utf8_bytes + 1);

Completed in 257 milliseconds