Home
last modified time | relevance | path

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

/external/chromium/chrome/browser/safe_browsing/
Dsafe_browsing_util.cc230 std::string escaped_str; in Escape() local
235 escaped_str.push_back('%'); in Escape()
236 escaped_str.push_back(kHexString[c >> 4]); in Escape()
237 escaped_str.push_back(kHexString[c & 0xf]); in Escape()
239 escaped_str.push_back(c); in Escape()
243 return escaped_str; in Escape()