Home | History | Annotate | Download | only in base

Lines Matching full:escaped

40 // return an escaped string.  If use_plus is true, spaces are converted
45 std::string escaped;
46 escaped.reserve(text.length() * 3);
50 escaped.push_back('+');
52 escaped.push_back('%');
53 escaped.push_back(IntToHex(c >> 4));
54 escaped.push_back(IntToHex(c & 0xf));
56 escaped.push_back(c);
59 return escaped;
76 // are the ones labeled PASS (allow either escaped or unescaped) in the big
218 // Keep escaped. Append a percent and we'll get the following two
369 // Character set is not valid. Return the escaped version.