Home
last modified time | relevance | path

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

/third_party/gettext/gettext-tools/src/
Dread-desktop.h64 void (*handle_comment) (struct desktop_reader_ty *pop, const char *s); member
Dread-desktop.c92 if (reader->methods->handle_comment) in desktop_reader_handle_comment()
93 reader->methods->handle_comment (reader, s); in desktop_reader_handle_comment()
/third_party/glib/gio/gdbus-2.0/codegen/
Dparser.py41 self._parser.CommentHandler = self.handle_comment
65 def handle_comment(self, data): member in DBusXMLParser
/third_party/python/Lib/html/
Dparser.py284 self.handle_comment(rawdata[i+2:pos])
450 def handle_comment(self, data): member in HTMLParser
/third_party/python/Modules/
D_elementtree.c3073 PyObject *handle_comment; member
3483 } 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()
/third_party/python/Doc/library/
Dhtml.parser.rst182 .. method:: HTMLParser.handle_comment(data)
250 def handle_comment(self, data):
/third_party/python/Lib/
D_markupbase.py174 self.handle_comment(rawdata[i+4: j])
/third_party/python/Lib/test/
Dtest_htmlparser.py43 def handle_comment(self, data): member in EventCollector