OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:codepoint2name
(Results
1 - 11
of
11
) sorted by null
/external/python/cpython3/Doc/tools/extensions/
escape4chm.py
9
from html.entities import
codepoint2name
18
name =
codepoint2name
.get(codepoint)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
htmlentitydefs.py
260
codepoint2name
= {}
variable
267
codepoint2name
[codepoint] = name
/external/python/cpython2/Lib/
htmlentitydefs.py
260
codepoint2name
= {}
variable
267
codepoint2name
[codepoint] = name
/external/python/cpython3/Lib/html/
entities.py
3
__all__ = ['html5', 'name2codepoint', '
codepoint2name
', 'entitydefs']
2499
codepoint2name
= {}
variable
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_multibytecodec_support.py
71
from htmlentitydefs import
codepoint2name
78
if ord(c) in
codepoint2name
:
79
l.append(u"&%s;" %
codepoint2name
[ord(c)])
test_codeccallbacks.py
89
l.append(u"&%s;" % htmlentitydefs.
codepoint2name
[ord(c)])
/external/markdown/markdown/
inlinepatterns.py
355
def
codepoint2name
(code):
function in function:AutomailPattern.handleMatch
357
entity = htmlentitydefs.
codepoint2name
.get(code)
363
letters = [
codepoint2name
(ord(letter)) for letter in email]
/external/python/cpython2/Lib/test/
multibytecodec_support.py
80
from htmlentitydefs import
codepoint2name
87
if ord(c) in
codepoint2name
:
88
l.append(u"&%s;" %
codepoint2name
[ord(c)])
test_codeccallbacks.py
108
l.append(u"&%s;" % htmlentitydefs.
codepoint2name
[ord(c)])
[
all
...]
/external/python/cpython3/Lib/test/
multibytecodec_support.py
87
from html.entities import
codepoint2name
94
if ord(c) in
codepoint2name
:
95
l.append("&%s;" %
codepoint2name
[ord(c)])
test_codeccallbacks.py
93
l.append("&%s;" % html.entities.
codepoint2name
[ord(c)])
[
all
...]
Completed in 828 milliseconds