Searched refs:Executive (Results 1 – 11 of 11) sorted by relevance
/external/webkit/WebKitTools/Scripts/webkitpy/ |
D | webkitport_unittest.py | 32 from webkitpy.executive import Executive 49 …(), [WebKitPort.script_path("build-webkit"), "--gtk", '--makeargs="-j%s"' % Executive.cpu_count()]) 50 …Port.script_path("build-webkit"), "--debug", "--gtk", '--makeargs="-j%s"' % Executive.cpu_count()]) 56 …d(), [WebKitPort.script_path("build-webkit"), "--qt", '--makeargs="-j%s"' % Executive.cpu_count()]) 57 …tPort.script_path("build-webkit"), "--debug", "--qt", '--makeargs="-j%s"' % Executive.cpu_count()])
|
D | credentials_unittest.py | 33 from webkitpy.executive import Executive 108 …command.assert_called_with(["git", "config", "--get", "foo"], error_handler=Executive.ignore_error) 112 …rt_called_with(["git", "config", "--get", "test_prefix.foo"], error_handler=Executive.ignore_error)
|
D | credentials.py | 37 from webkitpy.executive import Executive, ScriptError 48 self.executive = executive or Executive() 60 error_handler=Executive.ignore_error).rstrip('\n')
|
D | webkitport.py | 34 from webkitpy.executive import Executive 118 command.append('--makeargs="-j%s"' % Executive.cpu_count()) 142 command.append('--makeargs="-j%s"' % Executive.cpu_count())
|
D | executive_unittest.py | 31 from webkitpy.executive import Executive, run_command 37 … run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
|
D | scm.py | 38 from webkitpy.executive import Executive, run_command, ScriptError 90 Executive.default_error_handler(error) 107 print run_command(self.status_command(), error_handler=Executive.ignore_error) 372 …(['git', 'rev-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.ignore_error).rs… 442 … run_command(['git', 'revert', '--no-commit', git_commit], error_handler=Executive.ignore_error)
|
D | executive.py | 77 return Executive().run_command(*args, **kwargs) 80 class Executive(object): class
|
D | scm_unittest.py | 41 from webkitpy.executive import Executive, run_command, ScriptError 151 …self.assertRaises(OSError, run_command, command_does_not_exist, error_handler=Executive.ignore_err… 156 self.assertTrue(run_command(command_returns_non_zero, error_handler=Executive.ignore_error))
|
/external/webkit/WebKitTools/Scripts/ |
D | webkit-patch | 43 from webkitpy.executive import Executive 61 self.executive = Executive()
|
/external/libpcap/doc/ |
D | pcap.txt | 1591 this standard. Please address the information to the IETF Executive
|
/external/webkit/WebKitTools/ |
D | ChangeLog | 1922 Moves the try/catch for OSError exceptions in Executive.run_command 1925 assert that Executive.run_command throws an OSError exception. 5940 Moreover, modifies Executive.run_command to catch and pass OSError exceptions to 7314 Move run_command onto Executive to make code which uses run_command testable 7318 - Move run_command and error handlers onto Executive.
|