Searched refs:script_args (Results 1 – 11 of 11) sorted by relevance
/third_party/jerryscript/tools/ |
D | gen-unicode.py | 189 def generate_ranges(script_args): argument 191 letters, non_letters, separators = categorizer.read_categories(script_args.unicode_data) 200 " * from %s. Do not edit! */" % os.path.basename(script_args.unicode_data), 678 def generate_conversions(script_args): argument 680 case_mappings = read_case_mappings(script_args.unicode_data, script_args.special_casing) 700 unicode_file = os.path.basename(script_args.unicode_data) 701 spec_casing_file = os.path.basename(script_args.special_casing) 799 script_args = parser.parse_args() 801 …if not os.path.isfile(script_args.unicode_data) or not os.access(script_args.unicode_data, os.R_OK… 802 parser.error('The %s file is missing or not readable!' % script_args.unicode_data) [all …]
|
D | js2c.py | 97 script_args = parser.parse_args() 104 if script_args.main: 107 files = glob.glob(os.path.join(script_args.js_source_path, '*.js')) 110 if os.path.basename(path) not in script_args.ignore_files: 112 gen_output.append(js_to_native_code(path, name, script_args.build_type)) 121 with open(os.path.join(script_args.output_path, 'jerry-targetjs.h'), 'w') as gen_file:
|
D | run_jerry_tdd_executable.py | 49 if input_args.script_args: 50 cmd += " " + input_args.script_args
|
D | heaplimit_measure.py | 47 script_args = parser.parse_args() 49 return script_args
|
D | run-tests.py | 235 script_args = parser.parse_args() 237 return script_args
|
/third_party/jerryscript/tools/runners/ |
D | run-test-suite.py | 45 script_args = parser.parse_args() 46 if script_args.skip_list: 47 script_args.skip_list = script_args.skip_list.split(',') 49 script_args.skip_list = [] 50 if script_args.skip_file: 51 script_args.skip_file = script_args.skip_file.split(',') 53 script_args.skip_file = [] 55 return script_args
|
D | run-unittests.py | 37 script_args = parser.parse_args() 38 return script_args
|
/third_party/python/Lib/distutils/ |
D | core.py | 170 def run_setup (script_name, script_args=None, stop_after="run"): argument 212 if script_args is not None: 213 sys.argv[1:] = script_args
|
D | dist.py | 182 self.script_args = None 284 if self.script_args is not None: 285 for arg in self.script_args: 475 args = parser.getopt(args=self.script_args, object=self)
|
/third_party/python/Lib/distutils/tests/ |
D | test_build_py.py | 83 dist.script_args = ["build"] 149 dist.script_args = ["build"]
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 100 …| *script_args* | Arguments to supply to the | a list of strings … 125 .. function:: run_setup(script_name[, script_args=None, stop_after='run']) 134 will be replaced with *script* for the duration of the call. *script_args* is a 135 list of strings; if supplied, ``sys.argv[1:]`` will be replaced by *script_args* 154 | | (``sys.argv[1:]`` or *script_args*) have |
|