Home
last modified time | relevance | path

Searched refs:htmlentitydefs (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Doc/library/
Dhtmllib.rst90 Module :mod:`htmlentitydefs`
157 :mod:`htmlentitydefs` --- Definitions of HTML general entities
160 .. module:: htmlentitydefs
166 The :mod:`htmlentitydefs` module has been renamed to :mod:`html.entities` in
170 **Source code:** :source:`Lib/htmlentitydefs.py`
Dhtmlparser.rst159 All entity references from :mod:`htmlentitydefs` are now replaced in the
252 from htmlentitydefs import name2codepoint
/external/markdown/markdown/
Dinlinepatterns.py49 from html import entities as htmlentitydefs unknown
51 import htmlentitydefs
357 entity = htmlentitydefs.codepoint2name.get(code)
/external/python/cpython2/Lib/test/
Dtest_sundry.py50 import htmlentitydefs
Dtest_codeccallbacks.py2 import sys, codecs, htmlentitydefs, unicodedata
108 l.append(u"&%s;" % htmlentitydefs.codepoint2name[ord(c)])
Dtest_multibytecodec_support.py80 from htmlentitydefs import codepoint2name
/external/python/cpython2/Lib/
DHTMLParser.py465 import htmlentitydefs
468 for k, v in htmlentitydefs.name2codepoint.iteritems():
Dhtmllib.py32 from htmlentitydefs import entitydefs
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
Dcompat.py42 from htmlentitydefs import codepoint2name, name2codepoint
/external/python/cpython2/Misc/
Dmaintainers.rst127 htmlentitydefs
Dcheatsheet1900 htmlentitydefs Proposed entity definitions for HTML.
DHISTORY4384 - htmlentitydefs has two new dictionaries: name2codepoint maps
/external/regex-re2/lib/codereview/
Dcodereview.py2317 import htmlentitydefs
2318 if name in htmlentitydefs.entitydefs:
2319 self.handle_data(htmlentitydefs.entitydefs[name])
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py93 from htmlentitydefs import name2codepoint