Home
last modified time | relevance | path

Searched refs:entityref (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/
DHTMLParser.py19 entityref = re.compile('&([a-zA-Z][-.a-zA-Z0-9]*)[^a-zA-Z0-9]') variable
203 match = entityref.match(rawdata, i)
Dsgmllib.py30 entityref = re.compile('&([a-zA-Z][-.a-zA-Z0-9]*)[^a-zA-Z0-9]') variable
190 match = entityref.match(rawdata, i)
Dxmllib.py29 entityref = re.compile('&(?P<name>' + _Name + ')[^-a-zA-Z0-9._:]') variable
369 res = entityref.match(rawdata, i)
/external/python/cpython2/Doc/howto/
Dregex.rst510 entityref = re.compile( ... )