Searched refs:handle_comment (Results 1 – 8 of 8) sorted by relevance
64 void (*handle_comment) (struct desktop_reader_ty *pop, const char *s); member
92 if (reader->methods->handle_comment) in desktop_reader_handle_comment()93 reader->methods->handle_comment (reader, s); in desktop_reader_handle_comment()
41 self._parser.CommentHandler = self.handle_comment65 def handle_comment(self, data): member in DBusXMLParser
284 self.handle_comment(rawdata[i+2:pos])450 def handle_comment(self, data): member in HTMLParser
3073 PyObject *handle_comment; member3483 } else if (self->handle_comment) { in expat_comment_handler()3488 res = PyObject_CallOneArg(self->handle_comment, comment); in expat_comment_handler()3617 self->handle_comment = self->handle_pi = self->handle_close = NULL; in xmlparser_new()3704 self->handle_comment = PyObject_GetAttrString(target, "comment"); in _elementtree_XMLParser___init___impl()3705 if (ignore_attribute_error(self->handle_comment)) { in _elementtree_XMLParser___init___impl()3742 if (self->handle_comment) in _elementtree_XMLParser___init___impl()3769 Py_VISIT(self->handle_comment); in xmlparser_gc_traverse()3795 Py_CLEAR(self->handle_comment); in xmlparser_gc_clear()
182 .. method:: HTMLParser.handle_comment(data)250 def handle_comment(self, data):
174 self.handle_comment(rawdata[i+4: j])
43 def handle_comment(self, data): member in EventCollector