Searched refs:HTMLParser (Results 1 - 14 of 14) sorted by relevance

/external/python/cpython2/Lib/test/
H A 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)
H A Dtest_htmlparser.py1 """Tests for HTMLParser.py."""
3 import HTMLParser namespace
9 class EventCollector(HTMLParser.HTMLParser):
14 HTMLParser.HTMLParser.__init__(self)
91 parser = HTMLParser.HTMLParser()
94 self.assertRaises(HTMLParser.HTMLParseError, parse)
147 # elements are allowed. HTMLParser i
[all...]
/external/tpm2/generator/
H A Dextract_structures.py16 import HTMLParser namespace
26 class SpecParser(HTMLParser.HTMLParser):
39 HTMLParser.HTMLParser.__init__(self)
/external/skia/tools/
H A Dcompare_codereview.py22 import HTMLParser namespace
25 class CodeReviewHTMLParser(HTMLParser.HTMLParser):
31 This uses the HTMLParser class because it's the best thing in
63 HTMLParser.HTMLParser.__init__(self)
73 """Overrides the HTMLParser method to implement functionality.
109 """Overrides the HTMLParser method to implement functionality.
123 """Overrides the HTMLParser method to implement functionality.
147 class BuilderHTMLParser(HTMLParser
[all...]
/external/skqp/tools/
H A Dcompare_codereview.py22 import HTMLParser namespace
25 class CodeReviewHTMLParser(HTMLParser.HTMLParser):
31 This uses the HTMLParser class because it's the best thing in
63 HTMLParser.HTMLParser.__init__(self)
73 """Overrides the HTMLParser method to implement functionality.
109 """Overrides the HTMLParser method to implement functionality.
123 """Overrides the HTMLParser method to implement functionality.
147 class BuilderHTMLParser(HTMLParser
[all...]
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dnoise_summary.py9 from HTMLParser import HTMLParser namespace
23 class ParseReport(HTMLParser):
25 HTMLParser.__init__(self)
65 # Handler for HTMLParser for whenever it encounters text between tags
105 # Handler for HTMLParser for whenever it encounters text between tags
/external/selinux/gui/
H A Dhtml_util.py91 class HTMLParserAnchor(htmllib.HTMLParser):
94 htmllib.HTMLParser.__init__(self, formatter, verbose)
/external/python/cpython2/Lib/idlelib/
H A Dhelp.py27 from HTMLParser import HTMLParser namespace
43 class HelpParser(HTMLParser):
53 HTMLParser.__init__(self)
/external/python/cpython3/Lib/idlelib/
H A Dhelp.py27 from html.parser import HTMLParser namespace
42 class HelpParser(HTMLParser):
52 HTMLParser.__init__(self, convert_charrefs=True)
/external/python/cpython2/Lib/
H A DHTMLParser.py75 class HTMLParser(markupbase.ParserBase): class in inherits:markupbase.ParserBase
79 p = HTMLParser()
463 # Cannot use name2codepoint directly, because HTMLParser supports apos,
466 if HTMLParser.entitydefs is None:
467 entitydefs = HTMLParser.entitydefs = {'apos':u"'"}
H A Dhtmllib.py16 __all__ = ["HTMLParser", "HTMLParseError"]
23 class HTMLParser(sgmllib.SGMLParser): class in inherits:sgmllib.SGMLParser
35 """Creates an instance of the HTMLParser class.
485 p = HTMLParser(f)
/external/python/cpython3/Lib/test/
H A Dtest_htmlparser.py1 """Tests for HTMLParser.py."""
8 class EventCollector(html.parser.HTMLParser):
13 html.parser.HTMLParser.__init__(self, *args, **kw)
168 # elements are allowed. HTMLParser is more geared toward
298 # make sure that HTMLParser calls handle_data only once for each CDATA.
566 # Maybe HTMLParser should use self.unescape for these
/external/python/cpython3/Lib/html/
H A Dparser.py18 __all__ = ['HTMLParser']
63 class HTMLParser(_markupbase.ParserBase): class in inherits:_markupbase.ParserBase
67 p = HTMLParser()
/external/autotest/client/common_lib/cros/
H A Ddev_server.py7 import HTMLParser namespace
229 class MarkupStripper(HTMLParser.HTMLParser):

Completed in 1548 milliseconds