Home
last modified time | relevance | path

Searched refs:name2codepoint (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
Dfilters.py12 name2codepoint
86 def __init__(self, codepoint2name, name2codepoint): argument
89 self.name2codepoint = name2codepoint
138 codepoint = self.name2codepoint.get(name, 0xfffd)
153 _html_entities_escaper = XMLEntityEscaper(codepoint2name, name2codepoint)
Dcompat.py16 from html.entities import codepoint2name, name2codepoint
42 from htmlentitydefs import codepoint2name, name2codepoint
/external/python/cpython2/Lib/
Dhtmlentitydefs.py4 name2codepoint = { variable
266 for (name, codepoint) in name2codepoint.iteritems():
DHTMLParser.py468 for k, v in htmlentitydefs.name2codepoint.iteritems():
/external/python/cpython2/Doc/library/
Dhtmllib.rst174 This module defines three dictionaries, ``name2codepoint``, ``codepoint2name``,
188 .. data:: name2codepoint
Dhtmlparser.rst252 from htmlentitydefs import name2codepoint
270 c = unichr(name2codepoint[name])
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py93 from htmlentitydefs import name2codepoint
95 name2codepoint = {} variable
516 if self.convertHTMLEntities and x in name2codepoint:
517 return unichr(name2codepoint[x])
1410 data = unichr(name2codepoint[ref])
/external/python/cpython2/Misc/
DHISTORY4384 - htmlentitydefs has two new dictionaries: name2codepoint maps