Searched refs:escaped_str (Results 1 – 1 of 1) sorted by relevance
230 std::string escaped_str; in Escape() local235 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()