Lines Matching refs:Escape
5 #include "net/base/escape.h"
44 // Given text to escape and a Charmap defining which values to escape,
48 std::string Escape(const std::string& text, const Charmap& charmap,
157 // Invalid escape sequence, just pass the percent through and continue
202 return Escape(text, kQueryCharmap, use_plus);
205 // Convert the string to a sequence of bytes and then % escape anything
209 return UTF8ToUTF16(Escape(UTF16ToUTF8(text), kQueryCharmap, use_plus));
218 return Escape(path, kPathCharmap, false);
228 return Escape(path, kUrlEscape, true);
237 return Escape(input, kNonASCIICharmap, false);
247 return Escape(text, kExternalHandlerCharmap, false);