Searched defs:ScriptError (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dworkspace.py35 from webkitpy.common.system.executive import ScriptError namespace
69 except ScriptError, e:
H A Dexecutive_mock.py33 from webkitpy.common.system.executive import ScriptError namespace
93 raise ScriptError("Exception for %s" % args, output="MOCK command output")
125 raise ScriptError("Exception for %s" % args, output="MOCK command output")
128 raise ScriptError("MOCK ScriptError", output=output)
205 script_error = ScriptError(script_args=args, exit_code=self._exit_code, output=self._output)
H A Dexecutive_unittest.py48 from webkitpy.common.system.executive import Executive, ScriptError namespace
54 error = ScriptError('My custom message!', '', -1)
56 error = ScriptError('My custom message!', '', -1, 'My output.')
58 error = ScriptError('', 'my_command!', -1, 'My output.', '/Users/username/blah')
60 error = ScriptError('', 'my_command!', -1, 'ab' + '1' * 499)
64 error = ScriptError('', ('my', 'command'), -1, 'My output.', '/Users/username/blah')
H A Dexecutive.py47 class ScriptError(Exception): class in inherits:Exception
142 raise ScriptError(script_args=args,
412 script_error = ScriptError(script_args=args,
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dabstractsequencedcommand.py31 from webkitpy.common.system.executive import ScriptError namespace
50 except ScriptError, e:
H A Dstepsequence.py34 from webkitpy.common.system.executive import ScriptError namespace
81 except ScriptError, e:
H A Drebaseline.py43 from webkitpy.common.system.executive import ScriptError namespace
346 except ScriptError, e:
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
H A Dabstractstep.py31 from webkitpy.common.system.executive import ScriptError namespace
H A Dconfirmdiff.py35 from webkitpy.common.system.executive import ScriptError namespace
60 except ScriptError, e:
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
H A Dtest_importer_unittest.py35 from webkitpy.common.system.executive_mock import MockExecutive2, ScriptError namespace
67 host.executive = MockExecutive2(exception=ScriptError("abort: no repository found in '/Volumes/Source/src/wk/Tools/Scripts/webkitpy/w3c' (.hg not found)!"))
H A Dtest_importer.py85 from webkitpy.common.system.executive import ScriptError namespace
185 except (OSError, ScriptError):
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
H A Dscm.py36 from webkitpy.common.system.executive import Executive, ScriptError namespace
H A Dgit.py37 from webkitpy.common.system.executive import Executive, ScriptError namespace
149 raise ScriptError(message='No upstream/tracking branch set.')
268 raise ScriptError(message="Can't find a branch to diff against. svn-remote.svn.fetch is not in the git config and %s does not exist" % remote_master_ref)
304 raise ScriptError(message="Unable to find local branch tracking origin/master.")
H A Dsvn.py40 from webkitpy.common.system.executive import Executive, ScriptError namespace
87 raise ScriptError(script_args=svn_info_args, message='svn info did not contain a %s.' % field_name)
H A Dscm_unittest.py36 from webkitpy.common.system.executive import Executive, ScriptError namespace
341 self.assertRaises(ScriptError, self.untracking_scm._remote_branch_ref)
442 self.assertRaises(ScriptError, self._run_silent, ['git', 'svn', '--quiet', 'rebase'])
488 self.assertRaises(ScriptError, self.scm.commit_locally_with_message, 'no working copy changes', False)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
H A Dcommitannouncer.py34 from webkitpy.common.system.executive import ScriptError namespace
105 except ScriptError, e:
125 except ScriptError, e:
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dserver_process.py56 from webkitpy.common.system.executive import ScriptError namespace
H A Dbase_unittest.py35 from webkitpy.common.system.executive import Executive, ScriptError namespace
104 port = self.make_port(executive=executive_mock.MockExecutive2(exception=ScriptError))
H A Dandroid.py41 from webkitpy.common.system.executive import ScriptError namespace
548 except (ScriptError, driver.DeviceFailure) as e:
1099 except ScriptError as e:
1100 self._abort('ScriptError("%s") in _start()' % str(e))
H A Dbase.py55 from webkitpy.common.system.executive import ScriptError namespace
379 local_error = ScriptError()
1354 # It's possible to raise a ScriptError we pass wdiff invalid paths.
1362 except ScriptError as e:
1386 except ScriptError, e:

Completed in 8575 milliseconds