/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
quoting.py | 38 def _entity_subber(match, name2c=html_entities.name2codepoint):
|
/external/chromium-trace/catapult/third_party/webtest/webtest/ |
compat.py | 19 from html.entities import name2codepoint 25 from htmlentitydefs import name2codepoint # noqa
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
HTMLParser.py | 460 # Cannot use name2codepoint directly, because HTMLParser supports apos, 465 for k, v in htmlentitydefs.name2codepoint.iteritems():
|
htmlentitydefs.py | 4 name2codepoint = { variable 266 for (name, codepoint) in name2codepoint.iteritems():
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
HTMLParser.py | 460 # Cannot use name2codepoint directly, because HTMLParser supports apos, 465 for k, v in htmlentitydefs.name2codepoint.iteritems():
|
htmlentitydefs.py | 4 name2codepoint = { variable 266 for (name, codepoint) in name2codepoint.iteritems():
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
HTMLParser.py | 460 # Cannot use name2codepoint directly, because HTMLParser supports apos, 465 for k, v in htmlentitydefs.name2codepoint.iteritems():
|
htmlentitydefs.py | 4 name2codepoint = { variable 266 for (name, codepoint) in name2codepoint.iteritems():
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
HTMLParser.py | 460 # Cannot use name2codepoint directly, because HTMLParser supports apos, 465 for k, v in htmlentitydefs.name2codepoint.iteritems():
|
htmlentitydefs.py | 4 name2codepoint = { variable 266 for (name, codepoint) in name2codepoint.iteritems():
|
/external/autotest/site_utils/rpm_control_system/ |
BeautifulSoup.py | 93 from htmlentitydefs import name2codepoint 95 name2codepoint = {} variable 516 if self.convertHTMLEntities and x in name2codepoint: 517 return unichr(name2codepoint[x]) [all...] |