Home
last modified time | relevance | path

Searched refs:handle_comment (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Lib/html/
Dparser.py285 self.handle_comment(rawdata[i+2:pos])
451 def handle_comment(self, data): member in HTMLParser
/external/python/cpython2/Lib/
DHTMLParser.py266 self.handle_comment(rawdata[i+2:pos])
431 def handle_comment(self, data): member in HTMLParser
Dsgmllib.py443 def handle_comment(self, data): member in SGMLParser
478 def handle_comment(self, data): member in TestSGMLParser
Dxmllib.py440 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
Dmarkupbase.py178 self.handle_comment(rawdata[i+4: j])
/external/python/cpython2/Modules/
D_elementtree.c2074 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.c2808 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/
Dtest_sgmllib.py40 def handle_comment(self, data): member in EventCollector
Dtest_htmlparser.py44 def handle_comment(self, data): member in EventCollector
/external/python/cpython3/Doc/library/
Dhtml.parser.rst182 .. method:: HTMLParser.handle_comment(data)
250 def handle_comment(self, data):
/external/python/cpython2/Doc/library/
Dhtmlparser.rst199 .. method:: HTMLParser.handle_comment(data)
266 def handle_comment(self, data):
Dsgmllib.rst188 .. method:: SGMLParser.handle_comment(comment)
Dxmllib.rst171 .. method:: handle_comment(comment)
/external/python/cpython3/Lib/
D_markupbase.py177 self.handle_comment(rawdata[i+4: j])
/external/python/cpython3/Lib/test/
Dtest_htmlparser.py43 def handle_comment(self, data): member in EventCollector
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py1391 def handle_comment(self, text): member in BeautifulStoneSoup