OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:return_exit_code
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
scm_mock.py
43
def add(self, destination_path,
return_exit_code
=False):
44
self.add_list([destination_path],
return_exit_code
)
46
def add_list(self, destination_paths,
return_exit_code
=False):
48
if
return_exit_code
:
scm.py
70
def run(self, args, cwd=None, input=None, error_handler=None,
return_exit_code
=False, return_stderr=True, decode_output=True):
76
return_exit_code
=
return_exit_code
,
133
def add(self, path,
return_exit_code
=False):
134
self.add_list([path],
return_exit_code
)
136
def add_list(self, paths,
return_exit_code
=False):
svn.py
69
if self.run(["grep", "password", find_output], cwd=home_directory,
return_exit_code
=True) == 0:
71
return self.run(["grep", "passtype", find_output], cwd=home_directory,
return_exit_code
=True) == 0
99
exit_code = executive.run_command(svn_info_args, cwd=path,
return_exit_code
=True)
184
def add_list(self, paths,
return_exit_code
=False):
187
return self._run_svn(["add"] + paths,
return_exit_code
=
return_exit_code
)
205
return self._run_svn(["mv", "--force", origin, destination],
return_exit_code
=True)
208
return not self._run_svn(["info", path],
return_exit_code
=True, decode_output=False)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_mock.py
98
return_exit_code
=False,
177
return_exit_code
=False,
187
if
return_exit_code
:
executive.py
398
return_exit_code
=False,
427
if
return_exit_code
:
executive_unittest.py
108
Executive().run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error,
return_exit_code
=True)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver.py
117
exit_code = scm.add(destination_path,
return_exit_code
=True)
153
exit_code = test_config.scm.add(destination_path,
return_exit_code
=True)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base.py
338
if self._executive.run_command([httpd_path, "-v"], env=env,
return_exit_code
=True) != 0:
387
exit_code = self._executive.run_command(comand,
return_exit_code
=True)
[
all
...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
rebaseline_unittest.py
370
return_exit_code
=False,
[
all
...]
Completed in 609 milliseconds