Searched refs:codepoint2name (Results 1 - 9 of 9) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Dfilters.py11 from mako.compat import quote_plus, unquote_plus, codepoint2name, \
86 def __init__(self, codepoint2name, name2codepoint):
88 for c, n in codepoint2name.items()])
153 _html_entities_escaper = XMLEntityEscaper(codepoint2name, name2codepoint)
12 name2codepoint namespace
H A Dcompat.py16 from html.entities import codepoint2name, name2codepoint namespace
42 from htmlentitydefs import codepoint2name, name2codepoint namespace
/external/python/cpython2/Lib/
H A Dhtmlentitydefs.py260 codepoint2name = {} variable
267 codepoint2name[codepoint] = name
/external/python/cpython3/Lib/html/
H A Dentities.py3 __all__ = ['html5', 'name2codepoint', 'codepoint2name', 'entitydefs']
2499 codepoint2name = {} variable
2506 codepoint2name[codepoint] = name
/external/markdown/markdown/
H A Dinlinepatterns.py355 def codepoint2name(code): function in function:AutomailPattern.handleMatch
357 entity = htmlentitydefs.codepoint2name.get(code)
363 letters = [codepoint2name(ord(letter)) for letter in email]
/external/python/cpython2/Lib/test/
H A Dtest_multibytecodec_support.py80 from htmlentitydefs import codepoint2name namespace
87 if ord(c) in codepoint2name:
88 l.append(u"&%s;" % codepoint2name[ord(c)])
H A Dtest_codeccallbacks.py108 l.append(u"&%s;" % htmlentitydefs.codepoint2name[ord(c)])
/external/python/cpython3/Lib/test/
H A Dmultibytecodec_support.py87 from html.entities import codepoint2name namespace
94 if ord(c) in codepoint2name:
95 l.append("&%s;" % codepoint2name[ord(c)])
H A Dtest_codeccallbacks.py93 l.append("&%s;" % html.entities.codepoint2name[ord(c)])

Completed in 189 milliseconds