HomeSort by relevance Sort by last modified time
    Searched defs:Escape (Results 1 - 4 of 4) sorted by null

  /external/webkit/JavaScriptCore/wrec/
Escapes.h 39 class Escape {
49 Escape(Type type)
68 class PatternCharacterEscape : public Escape {
70 static const PatternCharacterEscape& cast(const Escape& escape)
72 ASSERT(escape.type() == PatternCharacter);
73 return static_cast<const PatternCharacterEscape&>(escape);
77 : Escape(PatternCharacter)
82 operator Escape() const { return *this; }
87 class CharacterClassEscape : public Escape {
    [all...]
  /external/chromium/net/tools/flip_server/
url_to_filename_encoder.h 39 url_filename = Escape(url_filename);
56 // Escape the given input |path| and chop any individual components
59 static std::string Escape(const std::string& path) {
  /external/chromium/net/tools/dump_cache/
url_to_filename_encoder.h 43 url_filename = Escape(url_filename);
56 // Escape the given input |path| and chop any individual components
59 static std::string Escape(const std::string& path) {
  /external/chromium/net/base/
escape.cc 7 #include "net/base/escape.h"
62 // Given text to escape and a Charmap defining which values to escape,
66 const std::string Escape(const std::string& text, const Charmap& charmap,
175 // Invalid escape sequence, just pass the percent through and continue
200 return Escape(text, kQueryCharmap, use_plus);
203 // Convert the string to a sequence of bytes and then % escape anything
207 return UTF8ToWide(Escape(WideToUTF8(text), kQueryCharmap, use_plus));
216 return Escape(path, kPathCharmap, false);
226 return Escape(path, kUrlEscape, true)
    [all...]

Completed in 54 milliseconds