Home
last modified time | relevance | path

Searched refs:codepoint2name (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Lib/html/
Dentities.py2499 codepoint2name = {} variable
2506 codepoint2name[codepoint] = name
/external/python/cpython2/Lib/
Dhtmlentitydefs.py260 codepoint2name = {} variable
267 codepoint2name[codepoint] = name
/external/python/cpython3/Doc/tools/extensions/
Descape4chm.py9 from html.entities import codepoint2name
18 name = codepoint2name.get(codepoint)
/external/python/cpython3/Doc/library/
Dhtml.entities.rst14 :data:`name2codepoint`, :data:`codepoint2name`, and :data:`entitydefs`.
40 .. data:: codepoint2name
/external/markdown/markdown/
Dinlinepatterns.py355 def codepoint2name(code): function
357 entity = htmlentitydefs.codepoint2name.get(code)
363 letters = [codepoint2name(ord(letter)) for letter in email]
/external/python/cpython2/Lib/test/
Dmultibytecodec_support.py80 from htmlentitydefs import codepoint2name
87 if ord(c) in codepoint2name:
88 l.append(u"&%s;" % codepoint2name[ord(c)])
Dtest_codeccallbacks.py108 l.append(u"&%s;" % htmlentitydefs.codepoint2name[ord(c)])
/external/python/cpython3/Lib/test/
Dmultibytecodec_support.py87 from html.entities import codepoint2name
94 if ord(c) in codepoint2name:
95 l.append("&%s;" % codepoint2name[ord(c)])
Dtest_codeccallbacks.py93 l.append("&%s;" % html.entities.codepoint2name[ord(c)])
/external/python/cpython2/Doc/library/
Dhtmllib.rst174 This module defines three dictionaries, ``name2codepoint``, ``codepoint2name``,
195 .. data:: codepoint2name
/external/python/cpython2/Misc/
DHISTORY4386 codepoint2name is the reverse mapping. See SF patch #722017.
/external/python/cpython3/Misc/
DHISTORY21770 codepoint2name is the reverse mapping. See SF patch #722017.