/external/python/cpython3/Lib/html/ |
D | parser.py | 285 self.handle_comment(rawdata[i+2:pos]) 451 def handle_comment(self, data): member in HTMLParser
|
/external/python/cpython2/Lib/ |
D | HTMLParser.py | 266 self.handle_comment(rawdata[i+2:pos]) 431 def handle_comment(self, data): member in HTMLParser
|
D | sgmllib.py | 443 def handle_comment(self, data): member in SGMLParser 478 def handle_comment(self, data): member in TestSGMLParser
|
D | xmllib.py | 440 self.handle_comment(rawdata[i+4: res.start(0)]) 786 def handle_comment(self, data): member in XMLParser 838 def handle_comment(self, data): member in TestXMLParser
|
D | markupbase.py | 178 self.handle_comment(rawdata[i+4: j])
|
/external/python/cpython2/Modules/ |
D | _elementtree.c | 2074 PyObject* handle_comment; member 2436 if (self->handle_comment) { 2439 res = PyObject_CallFunction(self->handle_comment, "O", comment); 2586 self->handle_comment = 2622 self->handle_comment = PyObject_GetAttrString(target, "comment"); 2623 if (ignore_attribute_error(self->handle_comment)) { 2653 if (self->handle_comment) 2680 Py_XDECREF(self->handle_comment);
|
/external/python/cpython3/Modules/ |
D | _elementtree.c | 2808 PyObject *handle_comment; member 3167 if (self->handle_comment) { in expat_comment_handler() 3170 res = PyObject_CallFunctionObjArgs(self->handle_comment, in expat_comment_handler() 3294 self->handle_comment = self->handle_pi = self->handle_close = NULL; in xmlparser_new() 3381 self->handle_comment = PyObject_GetAttrString(target, "comment"); in _elementtree_XMLParser___init___impl() 3382 if (ignore_attribute_error(self->handle_comment)) { in _elementtree_XMLParser___init___impl() 3413 if (self->handle_comment) in _elementtree_XMLParser___init___impl() 3440 Py_VISIT(self->handle_comment); in xmlparser_gc_traverse() 3463 Py_CLEAR(self->handle_comment); in xmlparser_gc_clear()
|
/external/python/cpython2/Lib/test/ |
D | test_sgmllib.py | 40 def handle_comment(self, data): member in EventCollector
|
D | test_htmlparser.py | 44 def handle_comment(self, data): member in EventCollector
|
/external/python/cpython3/Doc/library/ |
D | html.parser.rst | 182 .. method:: HTMLParser.handle_comment(data) 250 def handle_comment(self, data):
|
/external/python/cpython2/Doc/library/ |
D | htmlparser.rst | 199 .. method:: HTMLParser.handle_comment(data) 266 def handle_comment(self, data):
|
D | sgmllib.rst | 188 .. method:: SGMLParser.handle_comment(comment)
|
D | xmllib.rst | 171 .. method:: handle_comment(comment)
|
/external/python/cpython3/Lib/ |
D | _markupbase.py | 177 self.handle_comment(rawdata[i+4: j])
|
/external/python/cpython3/Lib/test/ |
D | test_htmlparser.py | 43 def handle_comment(self, data): member in EventCollector
|
/external/autotest/site_utils/rpm_control_system/ |
D | BeautifulSoup.py | 1391 def handle_comment(self, text): member in BeautifulStoneSoup
|