Searched refs:html_quote (Results 1 - 7 of 7) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_util/
H A Dtest_quoting.py17 self.assertEqual(quoting.html_quote(1),
19 self.assertEqual(quoting.html_quote(None),
21 self.assertEqual(quoting.html_quote('<hey!>'),
24 self.assertEqual(quoting.html_quote(u'<\u1029>'),
27 self.assertEqual(quoting.html_quote(u'<\u1029>'),
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Dquoting.py11 __all__ = ['html_quote', 'html_unquote', 'url_quote', 'url_unquote',
16 def html_quote(v, encoding=None): function
H A Dtemplate.py317 def html_quote(value): function
349 parts.append('%s="%s"' % (html_quote(name), html_quote(value)))
366 return html_quote(plain)
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Durl.py17 def html_quote(v): function
218 ' '.join(['%s="%s"' % (html_quote(n), html_quote(v))
234 '%s="%s"' % (html_quote(n), html_quote(v))
H A Dhttpexceptions.py81 from paste.util.quoting import strip_html, html_quote, no_quote, comment_quote namespace
222 body = self.make_body(environ, self.template, html_quote, comment_quote)
/external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/
H A Dmiddleware.py51 def html_quote(v): function
67 v = html_quote(v)
95 % html_quote(res)]
155 return '<html>There was an error: %s</html>' % html_quote(e)
470 value = html_quote(out.getvalue())
485 % (attr, html_quote(name),
553 % (html_quote(name), html_quote(value)))
/external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
H A Dformatter.py15 def html_quote(s): function
240 return html_quote(s)
486 return html_quote(src)
500 src = html_quote(orig_src)

Completed in 209 milliseconds