Home
last modified time | relevance | path

Searched refs:html_unquote (Results 1 – 3 of 3) sorted by relevance

/external/chromium-trace/catapult/third_party/Paste/tests/test_util/
Dtest_quoting.py7 self.assertEqual(quoting.html_unquote(b'<hey you>'),
9 self.assertEqual(quoting.html_unquote(b''),
11 self.assertEqual(quoting.html_unquote(b'&blahblah;'),
13 self.assertEqual(quoting.html_unquote(b'\xe1\x80\xa9'),
/external/chromium-trace/catapult/third_party/Paste/paste/util/
Dquoting.py45 def html_unquote(s, encoding=None): function
57 s = html_unquote(s)
/external/chromium-trace/catapult/third_party/Paste/paste/
Dfixture.py978 in_textarea[0].value = html_unquote(self.text[in_textarea[1]:match.start()])
1154 attr_body = html_unquote(attr_body or '')
1747 def html_unquote(v): function