Searched refs:one_byte_buffer (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/ |
D | uri.cc | 136 List<uint8_t>* one_byte_buffer, in IntoOneAndTwoByte() argument 158 AddToBuffer(decoded, &uri_content, k, is_uri, one_byte_buffer); in IntoOneAndTwoByte() 165 one_byte_buffer->Add(code); in IntoOneAndTwoByte() 176 List<uint8_t> one_byte_buffer; in Decode() local 179 if (!IntoOneAndTwoByte(uri, is_uri, &one_byte_buffer, &two_byte_buffer)) { in Decode() 185 one_byte_buffer.ToConstVector()); in Decode() 191 one_byte_buffer.length() + two_byte_buffer.length()), in Decode() 194 CopyChars(result->GetChars(), one_byte_buffer.ToConstVector().start(), in Decode() 195 one_byte_buffer.length()); in Decode() 196 CopyChars(result->GetChars() + one_byte_buffer.length(), in Decode()
|
/external/v8/src/builtins/ |
D | builtins-string.cc | 647 List<uint8_t> one_byte_buffer(length); in BUILTIN() local 658 one_byte_buffer.Add(code); in BUILTIN() 663 one_byte_buffer.ToConstVector())); in BUILTIN() 688 isolate->factory()->NewRawTwoByteString(one_byte_buffer.length() + in BUILTIN() 691 CopyChars(result->GetChars(), one_byte_buffer.ToConstVector().start(), in BUILTIN() 692 one_byte_buffer.length()); in BUILTIN() 693 CopyChars(result->GetChars() + one_byte_buffer.length(), in BUILTIN()
|