/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_htmllib.py | 8 class AnchorCollector(htmllib.HTMLParser):
11 htmllib.HTMLParser.__init__(self, *args, **kw)
19 class DeclCollector(htmllib.HTMLParser):
22 htmllib.HTMLParser.__init__(self, *args, **kw)
|
test_htmlparser.py | 1 """Tests for HTMLParser.py."""
3 import HTMLParser
9 class EventCollector(HTMLParser.HTMLParser):
14 HTMLParser.HTMLParser.__init__(self)
91 parser = HTMLParser.HTMLParser()
94 self.assertRaises(HTMLParser.HTMLParseError, parse)
165 # elements are allowed. HTMLParser is more geared toward [all...] |
/external/python/cpython2/Lib/test/ |
test_htmllib.py | 8 class AnchorCollector(htmllib.HTMLParser): 11 htmllib.HTMLParser.__init__(self, *args, **kw) 19 class DeclCollector(htmllib.HTMLParser): 22 htmllib.HTMLParser.__init__(self, *args, **kw)
|
test_htmlparser.py | 1 """Tests for HTMLParser.py.""" 3 import HTMLParser 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 is more geared towar [all...] |
/external/skia/tools/ |
compare_codereview.py | 22 import HTMLParser 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.HTMLParser) [all...] |
/external/skqp/tools/ |
compare_codereview.py | 22 import HTMLParser 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.HTMLParser) [all...] |
/external/autotest/client/site_tests/firmware_TouchMTB/ |
noise_summary.py | 9 from HTMLParser import HTMLParser 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/python/setuptools/setuptools/ |
py33compat.py | 54 unescape = getattr(html, 'unescape', html_parser.HTMLParser().unescape)
|
/external/python/cpython2/Lib/idlelib/ |
help.py | 27 from HTMLParser import HTMLParser 43 class HelpParser(HTMLParser): 53 HTMLParser.__init__(self)
|
/external/harfbuzz_ng/src/ |
gen-vowel-constraints.py | 15 from HTMLParser import HTMLParser 19 from html.parser import HTMLParser
|
gen-tag-table.py | 25 from HTMLParser import HTMLParser 29 from html.parser import HTMLParser 322 class OpenTypeRegistryParser (HTMLParser): 342 HTMLParser.__init__ (self) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
HTMLParser.py | 75 class HTMLParser(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"'"}
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
HTMLParser.py | 67 class HTMLParser(markupbase.ParserBase):
71 p = HTMLParser()
381 # Cannot use name2codepoint directly, because HTMLParser supports apos,
384 if HTMLParser.entitydefs is None:
385 entitydefs = HTMLParser.entitydefs = {'apos':u"'"}
|
htmllib.py | 16 __all__ = ["HTMLParser", "HTMLParseError"]
23 class HTMLParser(sgmllib.SGMLParser):
35 """Creates an instance of the HTMLParser class.
485 p = HTMLParser(f)
|
/external/python/cpython2/Lib/ |
HTMLParser.py | 75 class HTMLParser(markupbase.ParserBase): 79 p = HTMLParser() 463 # Cannot use name2codepoint directly, because HTMLParser supports apos, 465 if HTMLParser.entitydefs is None: 470 HTMLParser.entitydefs = entitydefs
|
htmllib.py | 16 __all__ = ["HTMLParser", "HTMLParseError"] 23 class HTMLParser(sgmllib.SGMLParser): 35 """Creates an instance of the HTMLParser class. 485 p = HTMLParser(f)
|
/external/python/cpython3/Lib/idlelib/ |
help.py | 27 from html.parser import HTMLParser 42 class HelpParser(HTMLParser): 52 HTMLParser.__init__(self, convert_charrefs=True)
|
/external/u-boot/tools/buildman/ |
toolchain.py | 7 from HTMLParser import HTMLParser 21 class MyHTMLParser(HTMLParser): 32 HTMLParser.__init__(self)
|
/external/python/cpython3/Lib/test/ |
test_htmlparser.py | 1 """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/ |
parser.py | 18 __all__ = ['HTMLParser'] 63 class HTMLParser(_markupbase.ParserBase): 67 p = HTMLParser()
|
/external/autotest/client/common_lib/cros/ |
dev_server.py | 7 import HTMLParser 229 class MarkupStripper(HTMLParser.HTMLParser): [all...] |