HomeSort by relevance Sort by last modified time
    Searched refs:Unescape (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/net/tools/dump_cache/
url_utilities_unittest.cc 66 TEST(UrlUtilitiesTest, Unescape) {
69 UrlUtilities::Unescape("http://www.foo.com"));
71 UrlUtilities::Unescape("www.foo.com:80/news?q=hello"));
75 UrlUtilities::Unescape("%7E%60%21%40%23%24%25%5E%26%2A%28%29%5F%2D"
81 EXPECT_EQ(unescaped_char, UrlUtilities::Unescape(escaped_char))
84 EXPECT_EQ(unescaped_char, UrlUtilities::Unescape(escaped_char))
90 UrlUtilities::Unescape("~`!@#$^&*()_-+={[}]|\\:;\"'<,>.?/"));
94 EXPECT_EQ(just_char, UrlUtilities::Unescape(just_char));
98 // Some examples to unescape.
99 EXPECT_EQ("Hello, world!", UrlUtilities::Unescape("Hello%2C world%21"))
    [all...]
url_utilities.h 28 // Unescape a url, converting all %XX to the the actual char 0xXX.
30 static std::string Unescape(const std::string& escaped_url);
url_utilities.cc 63 // Parsing states for UrlUtilities::Unescape
72 std::string UrlUtilities::Unescape(const std::string& escaped_url) {
url_to_filename_encoder.cc 91 string filename_ending = UrlUtilities::Unescape(escaped_ending);
  /external/chromium_org/third_party/markupsafe/
__init__.py 123 def unescape(self): member in class:Markup
124 r"""Unescape markup again into an text_type string. This also resolves
127 >>> Markup("Main &raquo; <em>About</em>").unescape()
146 r"""Unescape markup into an text_type string and strip all tags. This
154 return Markup(stripped).unescape()
  /external/chromium_org/chrome/browser/resources/cryptotoken/
b64.js 5 // WebSafeBase64Escape and Unescape.
  /external/chromium_org/v8/src/
uri.h 41 MUST_USE_RESULT static MaybeHandle<String> Unescape(Isolate* isolate,
72 MaybeHandle<String> URIUnescape::Unescape(Isolate* isolate,
runtime.cc     [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_util.cc 261 std::string Unescape(const std::string& url) {
337 std::string url_unescaped_str(Unescape(url_without_fragment.spec()));
382 url_unescaped_with_can_hostpath = Unescape(url_unescaped_with_can_hostpath);
  /external/chromium_org/v8/test/mjsunit/
escape.js 29 * @fileoverview Check that the global escape and unescape functions work
36 // Check the unescape chars are not escaped
61 // Check all chars up to 1000 in groups of 10 using unescape as a check
64 assertEquals(s, unescape(escape(s)));
74 assertEquals(example, unescape(escape(example)));
77 // Check unescape can cope with upper and lower case
78 assertEquals(unescape("%41%4A%4a"), "AJJ");
81 assertEquals("%U1234", unescape("%U1234"));
84 assertEquals("%", unescape("%"));
85 assertEquals("%4", unescape("%4"))
    [all...]

Completed in 331 milliseconds