/external/chromium-trace/catapult/third_party/Paste/tests/test_util/ |
test_quoting.py | 17 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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/docmaker/ |
tohtml.py | 249 def html_quote( line ): function 368 return html_quote( word ) 393 line = line + html_quote( l ) + '\n' 428 prefix = html_quote( m.group( 1 ) ) 458 result = result + html_quote( line[:length] ) 461 result = result + html_quote( line[:length] ) 465 result = result + html_quote( line )
|
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
quoting.py | 11 __all__ = ['html_quote', 'html_unquote', 'url_quote', 'url_unquote', 16 def html_quote(v, encoding=None): function
|
template.py | 317 def html_quote(value): function 349 parts.append('%s="%s"' % (html_quote(name), html_quote(value))) 366 return html_quote(plain)
|
/external/chromium-trace/catapult/third_party/Paste/paste/evalexception/ |
middleware.py | 51 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/catapult/third_party/Paste/paste/ |
url.py | 17 def html_quote(v): function 218 ' '.join(['%s="%s"' % (html_quote(n), html_quote(v)) 234 '%s="%s"' % (html_quote(n), html_quote(v))
|
httpexceptions.py | 81 from paste.util.quoting import strip_html, html_quote, no_quote, comment_quote 222 body = self.make_body(environ, self.template, html_quote, comment_quote)
|
/external/chromium-trace/catapult/third_party/Paste/paste/exceptions/ |
formatter.py | 15 def html_quote(s): function 240 return html_quote(s) 486 return html_quote(src) 500 src = html_quote(orig_src)
|
/external/libgdx/backends/gdx-backend-moe/libs/ |
intel-moe-core.jar | |