Searched refs:charref (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_htmlparser.py | 352 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/ |
D | encoding.c | 2492 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()
|
D | NEWS | 1383 (William), xmlSchemas errors (William), invalid charref problem pointed 1663 Derr), high codepoint charref like , buffer access in push 2441 about & charref parsing 2612 - Fixed a bug with contiguous charref
|
D | ChangeLog | 9273 * entities.c: Fix error on output of high codepoint charref like
|
/external/python/cpython3/Lib/html/ |
D | parser.py | 26 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/ |
D | HTMLParser.py | 20 charref = re.compile('&#(?:[0-9]+|[xX][0-9a-fA-F]+)[^0-9a-fA-F]') variable 188 match = charref.match(rawdata, i)
|
D | sgmllib.py | 31 charref = re.compile('&#([0-9]+)[^0-9]') variable 183 match = charref.match(rawdata, i)
|
D | xmllib.py | 30 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/ |
D | 2.7rc1.rst | 198 Fix parsing of malformatted charref (&#bad;), patch written by Fredrik Håård
|
/external/python/cpython2/Doc/howto/ |
D | regex.rst | 511 charref = re.compile( ... ) 630 charref = re.compile(r""" 642 charref = re.compile("&#(0[0-7]+"
|
/external/python/cpython3/Doc/howto/ |
D | regex.rst | 650 charref = re.compile(r""" 662 charref = re.compile("&#(0[0-7]+"
|
/external/python/cpython3/Misc/ |
D | HISTORY | 13362 - Issue #6662: Fix parsing of malformatted charref (&#bad;), patch written by
|