Home | History | Annotate | Download | only in base

Lines Matching refs:escaped

63 // return an escaped string.  If use_plus is true, spaces are converted
68 std::string escaped;
69 escaped.reserve(text.length() * 3);
73 escaped.push_back('+');
75 escaped.push_back('%');
76 escaped.push_back(IntToHex(c >> 4));
77 escaped.push_back(IntToHex(c & 0xf));
79 escaped.push_back(c);
82 return escaped;
170 // Keep escaped. Append a percent and we'll get the following two
249 bool use_plus, string16* escaped) {
257 escaped->assign(UTF8ToUTF16(Escape(encoded, kQueryCharmap, use_plus)));
272 // Not valid. Return the escaped version. Undo our changes to