Home
last modified time | relevance | path

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

/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 , buffer access in push
2441 about & 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/cpython2/Doc/howto/
Dregex.rst511 charref = re.compile( ... )
630 charref = re.compile(r"""
642 charref = re.compile("&#(0[0-7]+"
/external/python/cpython2/Misc/
DNEWS6173 - Issue #6662: Fix parsing of malformatted charref (&#bad;), patch written by