Searched defs:Executive (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/common/
H A Dprettypatch_unittest.py32 from webkitpy.common.system.executive import Executive namespace
38 executive = Executive()
72 pretty_patch = PrettyPatch(Executive(), self._webkit_root())
82 pretty_patch = PrettyPatch(Executive(), self._webkit_root())
/external/webkit/Tools/Scripts/
H A Dprint-vse-failure-logs40 from webkitpy.common.system.executive import Executive namespace
46 self._executive = Executive()
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dhttp_lock.py38 from webkitpy.common.system.executive import Executive namespace
59 self._executive = Executive()
H A Dchromium_mac.py39 from webkitpy.common.system.executive import Executive namespace
131 self._executive.run_command([self._path_to_wdiff()], error_handler=Executive.ignore_error)
H A Dserver_process.py42 from webkitpy.common.system.executive import Executive namespace
54 def __init__(self, port_obj, name, cmd, env=None, executive=Executive()):
H A Dwebsocket_server.py48 from webkitpy.common.system.executive import Executive namespace
197 # FIXME: We should direct this call through Executive for testing.
212 # FIXME: We should use a non-static Executive for easier
214 Executive().kill_process(self._process.pid)
246 # FIXME: We should use a non-static Executive for easier testing.
247 Executive().kill_process(pid)
H A Dbase_unittest.py34 from webkitpy.common.system.executive import Executive, ScriptError namespace
99 executive = Executive()
H A Dbase.py53 from webkitpy.common.system.executive import Executive, ScriptError namespace
106 self._executive = executive or Executive()
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dcredentials.py37 from webkitpy.common.system.executive import Executive, ScriptError namespace
56 self.executive = executive or Executive()
H A Dcredentials_unittest.py35 from webkitpy.common.system.executive import Executive namespace
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive_unittest.py36 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
77 file_interpreter = Executive.interpreter_for_script(temp_name, fs)
98 run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
102 executive = Executive()
110 to Executive.run* methods, and they will return unicode()
125 executive = Executive()
148 executive = Executive()
164 executive = Executive()
178 executive = Executive()
198 executive = Executive()
[all...]
H A Dexecutive.py101 # New code should use Executive.run_command directly instead
102 return Executive().run_command(*args, **kwargs)
105 class Executive(object): class in inherits:object
307 # updated to use an Executive object.
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Ddeduplicate_tests_unittest.py37 class Executive(object): class in class:MockExecutive
H A Drebaseline_chromium_webkit_tests_unittest.py39 from webkitpy.common.system.executive import Executive, ScriptError namespace
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dapi.py39 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
H A Dscm.py40 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
133 Executive.default_error_handler(error)
154 self._executive = executive or Executive()
185 print self.run(self.status_command(), error_handler=Executive.ignore_error)
330 find_output = self.run(find_args, cwd=home_directory, error_handler=Executive.ignore_error).rstrip()
343 # FIXME: ScriptError is for Executive, this should probably be a normal Exception.
643 return run_command(['git', 'rev-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.ignore_error).rstrip() == "true"
664 error_handler=Executive.ignore_error).rstrip('\n')
825 self.run(['git', 'revert', '--no-commit', git_commit], error_handler=Executive.ignore_error)
H A Dscm_unittest.py51 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
264 self.assertRaises(OSError, run_command, command_does_not_exist, error_handler=Executive.ignore_error)
269 self.assertTrue(run_command(command_returns_non_zero, error_handler=Executive.ignore_error))
/external/webkit/Tools/Scripts/webkitpy/common/config/
H A Dports.py35 from webkitpy.common.system.executive import Executive namespace
50 interpreter = Executive.interpreter_for_script(script_path)
75 args = '--makeargs="-j%s"' % Executive().cpu_count()

Completed in 1570 milliseconds