Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/mako/mako/
Dfilters.py9 from html.entities import codepoint2name
58 def __init__(self, codepoint2name, name2codepoint): argument
60 c: str("&%s;" % n) for c, n in codepoint2name.items()
126 _html_entities_escaper = XMLEntityEscaper(codepoint2name, name2codepoint)
/aosp_15_r20/external/python/cpython3/Lib/html/
Dentities.py2500 codepoint2name = {} variable
2507 codepoint2name[codepoint] = name
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/html/
Dentities.py2500 codepoint2name = {} variable
2507 codepoint2name[codepoint] = name
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/html/
H A Dentities.py2500 codepoint2name = {} variable
2507 codepoint2name[codepoint] = name
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/html/
Dentities.py2500 codepoint2name = {} variable
2507 codepoint2name[codepoint] = name
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/html/
Dentities.py2500 codepoint2name = {} variable
2507 codepoint2name[codepoint] = name
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/html/
Dentities.py2500 codepoint2name = {} variable
2507 codepoint2name[codepoint] = name
/aosp_15_r20/external/python/cpython2/Lib/
Dhtmlentitydefs.py260 codepoint2name = {} variable
267 codepoint2name[codepoint] = name
/aosp_15_r20/external/python/cpython3/Doc/tools/extensions/
Descape4chm.py10 from html.entities import codepoint2name
19 name = codepoint2name.get(codepoint)
/aosp_15_r20/external/python/cpython3/Doc/library/
Dhtml.entities.rst14 :data:`name2codepoint`, :data:`codepoint2name`, and :data:`entitydefs`.
40 .. data:: codepoint2name
/aosp_15_r20/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.py106 l.append("&%s;" % html.entities.codepoint2name[ord(c)])
/aosp_15_r20/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)])
/aosp_15_r20/external/python/cpython2/Doc/library/
Dhtmllib.rst174 This module defines three dictionaries, ``name2codepoint``, ``codepoint2name``,
195 .. data:: codepoint2name
/aosp_15_r20/external/python/cpython2/Misc/
DHISTORY4386 codepoint2name is the reverse mapping. See SF patch #722017.
/aosp_15_r20/external/python/cpython3/Misc/
DHISTORY21770 codepoint2name is the reverse mapping. See SF patch #722017.