Home | History | Annotate | Download | only in src

Lines Matching refs:destination

3784   String* destination = String::cast(o);
3792 destination->Set(dest_position, '%');
3793 destination->Set(dest_position+1, 'u');
3794 destination->Set(dest_position+2, hex_chars[chr >> 12]);
3795 destination->Set(dest_position+3, hex_chars[(chr >> 8) & 0xf]);
3796 destination->Set(dest_position+4, hex_chars[(chr >> 4) & 0xf]);
3797 destination->Set(dest_position+5, hex_chars[chr & 0xf]);
3800 destination->Set(dest_position, chr);
3803 destination->Set(dest_position, '%');
3804 destination->Set(dest_position+1, hex_chars[chr >> 4]);
3805 destination->Set(dest_position+2, hex_chars[chr & 0xf]);
3809 return destination;
3889 String* destination = String::cast(o);
3894 destination->Set(dest_position, Unescape(source, i, length, &step));
3897 return destination;