Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/html/
Dentities.py7 name2codepoint = { variable
2505 for (name, codepoint) in name2codepoint.items():
/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/cpython3/Doc/library/
Dhtml.entities.rst14 :data:`name2codepoint`, :data:`codepoint2name`, and :data:`entitydefs`.
35 .. data:: name2codepoint
Dhtml.parser.rst236 from html.entities import name2codepoint
254 c = chr(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/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/python/cpython2/Misc/
DHISTORY4384 - htmlentitydefs has two new dictionaries: name2codepoint maps
/external/python/cpython3/Misc/
DHISTORY21768 - htmlentitydefs has two new dictionaries: name2codepoint maps