Home
last modified time | relevance | path

Searched refs:HTMLParser (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython2/Doc/library/
Dhtmlparser.rst2 :mod:`HTMLParser` --- Simple HTML and XHTML parser
5 .. module:: HTMLParser
10 The :mod:`HTMLParser` module has been renamed to :mod:`html.parser` in Python
21 **Source code:** :source:`Lib/HTMLParser.py`
25 This module defines a class :class:`.HTMLParser` which serves as the basis for
31 .. class:: HTMLParser()
33 An :class:`.HTMLParser` instance is fed HTML data and calls handler methods
35 encountered. The user should subclass :class:`.HTMLParser` and override its
38 The :class:`.HTMLParser` class is instantiated without arguments.
48 :class:`.HTMLParser` is able to handle broken markup, but in some cases it
[all …]
Dhtmllib.rst10 Use :mod:`HTMLParser` instead in Python 2, and the equivalent,
27 output. The :class:`~HTMLParser.HTMLParser` class is designed to be used as a base class
31 :class:`~HTMLParser.HTMLParser` implementation supports the HTML 2.0 language as described
64 .. class:: HTMLParser(formatter)
73 Exception raised by the :class:`~HTMLParser.HTMLParser` class when it encounters an error
85 Module :mod:`HTMLParser`
94 Base class for :class:`~HTMLParser.HTMLParser`.
99 HTMLParser Objects
102 In addition to tag methods, the :class:`~HTMLParser.HTMLParser` class provides some
106 .. attribute:: HTMLParser.formatter
[all …]
Dformatter.rst9 .. index:: single: HTMLParser (class in htmllib)
12 implementations. The *formatter* interface is used by the :class:`~HTMLParser.HTMLParser`
Dsgmllib.rst18 somewhat different interface is available in the :mod:`HTMLParser` module.
/external/skia/tools/
Dcompare_codereview.py22 import HTMLParser
25 class CodeReviewHTMLParser(HTMLParser.HTMLParser):
63 HTMLParser.HTMLParser.__init__(self)
147 class BuilderHTMLParser(HTMLParser.HTMLParser):
182 HTMLParser.HTMLParser.__init__(self)
/external/python/cpython2/Lib/test/
Dtest_htmllib.py8 class AnchorCollector(htmllib.HTMLParser):
11 htmllib.HTMLParser.__init__(self, *args, **kw)
19 class DeclCollector(htmllib.HTMLParser):
22 htmllib.HTMLParser.__init__(self, *args, **kw)
Dtest_htmlparser.py3 import HTMLParser
9 class EventCollector(HTMLParser.HTMLParser):
14 HTMLParser.HTMLParser.__init__(self)
91 parser = HTMLParser.HTMLParser()
94 self.assertRaises(HTMLParser.HTMLParseError, parse)
405 parser = HTMLParser.HTMLParser()
/external/tpm2/generator/
Dextract_structures.py16 import HTMLParser
26 class SpecParser(HTMLParser.HTMLParser):
39 HTMLParser.HTMLParser.__init__(self)
/external/autotest/client/site_tests/firmware_TouchMTB/
Dnoise_summary.py9 from HTMLParser import HTMLParser
23 class ParseReport(HTMLParser):
25 HTMLParser.__init__(self)
/external/python/cpython2/Lib/idlelib/
Dhelp.py27 from HTMLParser import HTMLParser
43 class HelpParser(HTMLParser):
53 HTMLParser.__init__(self)
/external/selinux/gui/
Dhtml_util.py91 class HTMLParserAnchor(htmllib.HTMLParser):
94 htmllib.HTMLParser.__init__(self, formatter, verbose)
/external/python/cpython2/Lib/
DHTMLParser.py75 class HTMLParser(markupbase.ParserBase): class
466 if HTMLParser.entitydefs is None:
467 entitydefs = HTMLParser.entitydefs = {'apos':u"'"}
Dhtmllib.py23 class HTMLParser(sgmllib.SGMLParser): class
485 p = HTMLParser(f)
/external/autotest/server/cros/dynamic_suite/
Dreporting.py8 import HTMLParser
657 marker = HTMLParser.HTMLParser().unescape(marker)
/external/autotest/client/common_lib/cros/
Ddev_server.py7 import HTMLParser
165 class MarkupStripper(HTMLParser.HTMLParser):
/external/python/cpython2/Misc/
Dmaintainers.rst129 HTMLParser
DNEWS2198 - Issue #20288: fix handling of invalid numeric charrefs in HTMLParser.
2329 - Issue #19480: HTMLParser now accepts all valid start-tag names as defined
3800 - Issue #14538: HTMLParser can now parse correctly start tags that contain
4300 - HTMLParser is now able to handle slashes in the start tag.
4309 - Issue #13987: HTMLParser is now able to handle EOFs in the middle of a
4321 - Issue #13993: HTMLParser is now able to handle broken end tags.
4323 - Issue #13960: HTMLParser is now able to handle broken comments.
4420 - Issue #13358: HTMLParser now calls handle_data only once for each CDATA.
4426 - Issues #1745761, #755670, #13357, #12629, #1200313: HTMLParser now correctly
4442 - Issue #670664: Fix HTMLParser to correctly handle the content of
[all …]
Dcheatsheet1902 HTMLParser A parser for HTML and XHTML.
/external/regex-re2/lib/codereview/
Dcodereview.py2281 from HTMLParser import HTMLParser
2284 class FormParser(HTMLParser):
2289 HTMLParser.__init__(self)
/external/tagsoup/
DCHANGES111 The shared HTMLParser object has been eliminated
/external/libxml2/
DNEWS29 Possible overflow in HTMLParser.c (Daniel Veillard),