Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_htmlparser.py352 for charref in charrefs:
353 self._run_check('<a href="foo{0}zar">a{0}z</a>'.format(charref),
359 for charref in charrefs:
361 '{0}</a>{0}'.format(charref),
364 for charref in charrefs:
365 text = 'X'.join([charref]*3)
372 '<style>{0}</style>{1}'.format(text, charref),
/external/libxml2/
Dencoding.c2492 xmlChar charref[20]; in xmlCharEncOutput() local
2514 charrefLen = snprintf((char *) &charref[0], sizeof(charref), in xmlCharEncOutput()
2521 charref, &c_in); in xmlCharEncOutput()
2656 xmlChar charref[20]; in xmlCharEncOutFunc() local
2678 charrefLen = snprintf((char *) &charref[0], sizeof(charref), in xmlCharEncOutFunc()
2685 charref, &toconv); in xmlCharEncOutFunc()
DNEWS1383 (William), xmlSchemas errors (William), invalid charref problem pointed
1663 Derr), high codepoint charref like &#x10FFFF;, buffer access in push
2441 about &#38; charref parsing
2612 - Fixed a bug with contiguous charref
DChangeLog9273 * entities.c: Fix error on output of high codepoint charref like
/external/python/cpython3/Lib/html/
Dparser.py26 charref = re.compile('&#(?:[0-9]+|[xX][0-9a-fA-F]+)[^0-9a-fA-F]') variable
201 match = charref.match(rawdata, i)
/external/python/cpython2/Lib/
DHTMLParser.py20 charref = re.compile('&#(?:[0-9]+|[xX][0-9a-fA-F]+)[^0-9a-fA-F]') variable
188 match = charref.match(rawdata, i)
Dsgmllib.py31 charref = re.compile('&#([0-9]+)[^0-9]') variable
183 match = charref.match(rawdata, i)
Dxmllib.py30 charref = re.compile('&#(?P<char>[0-9]+[^0-9]|x[0-9a-fA-F]+[^0-9a-fA-F])') variable
358 res = charref.match(rawdata, i)
/external/python/cpython2/Misc/NEWS.d/
D2.7rc1.rst198 Fix parsing of malformatted charref (&#bad;), patch written by Fredrik Håård
/external/python/cpython2/Doc/howto/
Dregex.rst511 charref = re.compile( ... )
630 charref = re.compile(r"""
642 charref = re.compile("&#(0[0-7]+"
/external/python/cpython3/Doc/howto/
Dregex.rst650 charref = re.compile(r"""
662 charref = re.compile("&#(0[0-7]+"
/external/python/cpython3/Misc/
DHISTORY13362 - Issue #6662: Fix parsing of malformatted charref (&#bad;), patch written by