Home
last modified time | relevance | path

Searched refs:dest_position (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/runtime/
Druntime-uri.cc87 int dest_position = 0; in UnescapeSlow() local
96 for (int i = start_index; i < length; dest_position++) { in UnescapeSlow()
98 dest->SeqOneByteStringSet(dest_position, in UnescapeSlow()
109 for (int i = start_index; i < length; dest_position++) { in UnescapeSlow()
111 dest->SeqTwoByteStringSet(dest_position, in UnescapeSlow()
228 int dest_position = 0; in Escape() local
236 dest->SeqOneByteStringSet(dest_position, '%'); in Escape()
237 dest->SeqOneByteStringSet(dest_position + 1, 'u'); in Escape()
238 dest->SeqOneByteStringSet(dest_position + 2, kHexChars[c >> 12]); in Escape()
239 dest->SeqOneByteStringSet(dest_position + 3, kHexChars[(c >> 8) & 0xf]); in Escape()
[all …]