Home
last modified time | relevance | path

Searched refs:MultiCommandTool (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/tool/
Dmulticommandtool_unittest.py35 from webkitpy.tool.multicommandtool import MultiCommandTool, Command, TryAgain
89 class TrivialTool(MultiCommandTool):
91 MultiCommandTool.__init__(self, name="trivial-tool", commands=commands)
102 self.assertEqual(MultiCommandTool._split_command_name_from_args(args), expected_split)
Dmain.py46 from webkitpy.tool.multicommandtool import MultiCommandTool
50 class WebKitPatch(MultiCommandTool, Host):
62 MultiCommandTool.__init__(self)
Dmulticommandtool.py212 class MultiCommandTool(object): class
/external/webkit/Tools/
DChangeLog-2010-05-249701 MultiCommandTool, but as discussed in person we'll intergrate the two
24413 - Move MultiCommandTool._standalone_help_for_command to Command.standalone_help
24414 - Move MultiCommandTool._help_epilog to Command._help_epilog
24758 - Allow passing of explicit commands to MultiCommandTool.__init__
24932 properly register themselves with MultiCommandTool.
24963 MultiCommandTool should find Command objects automatically instead of with a manual list
25053 Move MultiCommandTool and Command into a separate file and add some basic unit tests
25078 - Add new MultiCommandTool class to contain option parsing and help printing logic.
25080 … - MultiCommandTool has two abstract methods should_show_command_help and should_execute_command.