/external/chromium/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 | 29 // Unescape a url, converting all %XX to the the actual char 0xXX. 31 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/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 » <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/v8/src/ |
uri.h | 64 static Handle<String> Unescape(Isolate* isolate, Handle<String> source); 94 Handle<String> URIUnescape::Unescape(Isolate* isolate, Handle<String> source) {
|
runtime.cc | [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
safe_browsing_util.cc | 213 std::string Unescape(const std::string& url) { 289 std::string url_unescaped_str(Unescape(url_without_fragment.spec())); 326 url_unescaped_with_can_hostpath = Unescape(url_unescaped_with_can_hostpath);
|
/external/chromium_org/chrome/browser/safe_browsing/ |
safe_browsing_util.cc | 256 std::string Unescape(const std::string& url) { 332 std::string url_unescaped_str(Unescape(url_without_fragment.spec())); 372 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...] |
/external/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...] |
/external/v8/src/ |
runtime.cc | [all...] |