HomeSort by relevance Sort by last modified time
    Searched full:script_args (Results 1 - 14 of 14) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
core.py 46 setup_keywords = ('distclass', 'script_name', 'script_args', 'options',
106 if 'script_args' not in attrs:
107 attrs['script_args'] = sys.argv[1:]
174 def run_setup(script_name, script_args=None, stop_after="run"):
183 call. 'script_args' is a list of strings; if supplied,
184 'sys.argv[1:]' will be replaced by 'script_args' for the duration of
196 stop after the command-line ('sys.argv[1:]' or 'script_args')
217 if script_args is not None:
218 sys.argv[1:] = script_args
dist.py 170 # 'script_name' and 'script_args' are usually set to sys.argv[0]
174 self.script_args = None
274 # If attrs['script_args'] wasn't passed, assume false.
279 if self.script_args is not None:
280 for arg in self.script_args:
425 'script_args' instance attribute (which defaults to 'sys.argv[1:]'
459 args = parser.getopt(args=self.script_args, object=self)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
core.py 46 setup_keywords = ('distclass', 'script_name', 'script_args', 'options',
106 if 'script_args' not in attrs:
107 attrs['script_args'] = sys.argv[1:]
174 def run_setup(script_name, script_args=None, stop_after="run"):
183 call. 'script_args' is a list of strings; if supplied,
184 'sys.argv[1:]' will be replaced by 'script_args' for the duration of
196 stop after the command-line ('sys.argv[1:]' or 'script_args')
217 if script_args is not None:
218 sys.argv[1:] = script_args
dist.py 170 # 'script_name' and 'script_args' are usually set to sys.argv[0]
174 self.script_args = None
274 # If attrs['script_args'] wasn't passed, assume false.
279 if self.script_args is not None:
280 for arg in self.script_args:
425 'script_args' instance attribute (which defaults to 'sys.argv[1:]'
459 args = parser.getopt(args=self.script_args, object=self)
    [all...]
  /external/harfbuzz_ng/contrib/python/
setup.py 37 script_args = args variable
  /external/chromium_org/chrome/test/chromedriver/js/
execute_async_script_test.html 32 var script_args = [captureArguments, 1];
33 executeAsyncScript(script, script_args, true);
  /external/chromium_org/tools/gn/
function_exec_script.cc 329 const Value& script_args = args[1]; local
330 if (!script_args.VerifyTypeIs(Value::LIST, err))
332 for (size_t i = 0; i < script_args.list_value().size(); i++) {
333 if (!script_args.list_value()[i].VerifyTypeIs(Value::STRING, err))
335 cmdline.AppendArg(script_args.list_value()[i].string_value());
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive.py 51 script_args=None,
61 message = 'Failed to run "%s"' % repr(script_args)
71 self.script_args = script_args # 'args' is already used by Exception
80 command_path = self.script_args
142 raise ScriptError(script_args=args,
432 script_error = ScriptError(script_args=args,
executive_mock.py 194 script_error = ScriptError(script_args=args, exit_code=self._exit_code, output=self._output)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_py.py 90 dist.script_args = ["build"]
test_dist.py 226 d = distutils.dist.Distribution(attrs={'script_args':
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_py.py 90 dist.script_args = ["build"]
test_dist.py 226 d = distutils.dist.Distribution(attrs={'script_args':
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
svn.py 87 raise ScriptError(script_args=svn_info_args, message='svn info did not contain a %s.' % field_name)

Completed in 495 milliseconds