Home | History | Annotate | Download | only in base

Lines Matching refs:escaped

45 // return an escaped string.  If use_plus is true, spaces are converted
50 std::string escaped;
51 escaped.reserve(text.length() * 3);
55 escaped.push_back('+');
57 escaped.push_back('%');
58 escaped.push_back(IntToHex(c >> 4));
59 escaped.push_back(IntToHex(c & 0xf));
61 escaped.push_back(c);
64 return escaped;
81 // are the ones labeled PASS (allow either escaped or unescaped) in the big
152 // Keep escaped. Append a percent and we'll get the following two
264 // Not valid. Return the escaped version. Undo our changes to