Home
last modified time | relevance | path

Searched full:args_file (Results 1 – 18 of 18) sorted by relevance

/external/cronet/build/fuchsia/test/
Dcompatible_utils.py177 args_file = os.path.join(system_image_dir, _BUILD_ARGS)
178 if not os.path.exists(args_file):
179 args_file = os.path.join(system_image_dir, _ARGS_FILE)
181 if not os.path.exists(args_file):
186 with open(args_file) as f:
189 raise VersionNotFoundError('Could not retrieve %s' % args_file)
202 (args_file, contents))
/external/angle/build/android/gyp/
Dtrace_event_bytecode_rewriter.py50 args_file = tempfile.NamedTemporaryFile(mode='w')
51 args_file.write('\n'.join(cmd[3:]))
52 args_file.flush()
53 cmd[3:] = ['@' + args_file.name]
/external/cronet/build/android/gyp/
Dtrace_event_bytecode_rewriter.py50 args_file = tempfile.NamedTemporaryFile(mode='w')
51 args_file.write('\n'.join(cmd[3:]))
52 args_file.flush()
53 cmd[3:] = ['@' + args_file.name]
/external/pigweed/pw_build/
Dexec.gni45 # args_file: Optional path to a file containing additional positional arguments
49 # skip_empty_args: If args_file is provided, boolean indicating whether to skip
92 if (defined(invoker.args_file)) {
95 rebase_path(invoker.args_file, root_build_dir),
Dgo.gni137 args_file = _deps_metadata_file
Dgn.rst864 * ``args_file``: Optional path to a file containing additional positional
867 * ``skip_empty_args``: If args_file is provided, boolean indicating whether to
/external/autotest/server/site_tests/platform_MTBF/
Dgenerate_tests.py110 if 'args_file' in new_suite:
111 new_suite['args_file'] = _substitute_constants(
112 new_suite['args_file'], constants)
Dspera_config.json225 "args_file": "perf_cuj.config", string
262 "args_file": "perf_cuj.config", string
277 "args_file": "perf_cuj.config", string
302 "args_file": "perf_cuj.config", string
Dconfig_schema.yaml56 args_file:
/external/pigweed/pw_build/py/pw_build/
Dexec.py135 if args.args_file is not None:
137 for line in args.args_file:
/external/cronet/build/config/fuchsia/
Dsize_optimized_cast_receiver_args_internal.gn12 # 'args_file': '//build/config/fuchsia/size_optimized_cast_receiver_args_internal.gn'
Dsize_optimized_cast_receiver_args.gn13 # 'args_file': '//build/config/fuchsia/size_optimized_cast_receiver_args.gn'
/external/angle/build/config/fuchsia/
Dsize_optimized_cast_receiver_args_internal.gn12 # 'args_file': '//build/config/fuchsia/size_optimized_cast_receiver_args_internal.gn'
Dsize_optimized_cast_receiver_args.gn13 # 'args_file': '//build/config/fuchsia/size_optimized_cast_receiver_args.gn'
/external/selinux/python/semanage/
Dsemanage932 args_file = []
944 args_file = ["-f", i]
948 return args_subcommand + args_ie + args_file
/external/python/cpython2/Lib/
Dargparse.py2004 args_file = open(arg_string[1:])
2007 for arg_line in args_file.read().splitlines():
2013 args_file.close()
/external/webrtc/tools_webrtc/mb/
Dmb_unittest.py187 'args_file': '//build/args/bots/fake_group/fake_args_bot.gn',
/external/python/cpython3/Lib/
Dargparse.py2175 with open(arg_string[1:]) as args_file:
2177 for arg_line in args_file.read().splitlines():