Home
last modified time | relevance | path

Searched refs:charref (Results 1 – 13 of 13) 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.c2494 xmlChar charref[20]; in xmlCharEncOutput() local
2516 charrefLen = snprintf((char *) &charref[0], sizeof(charref), in xmlCharEncOutput()
2523 charref, &c_in); in xmlCharEncOutput()
2658 xmlChar charref[20]; in xmlCharEncOutFunc() local
2680 charrefLen = snprintf((char *) &charref[0], sizeof(charref), in xmlCharEncOutFunc()
2687 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/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/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/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.rst624 charref = re.compile(r"""
636 charref = re.compile("&#(0[0-7]+"
/external/annotation-tools/asmx/test/lib/
Dsaxon7.jarMETA-INF/ META-INF/MANIFEST.MF net/sf/saxon/Compile. ...
/external/python/cpython2/Misc/
DNEWS6173 - Issue #6662: Fix parsing of malformatted charref (&#bad;), patch written by
/external/python/cpython3/Misc/
DHISTORY13362 - Issue #6662: Fix parsing of malformatted charref (&#bad;), patch written by