Home
last modified time | relevance | path

Searched refs:opt_name (Results 1 – 25 of 26) sorted by relevance

12

/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
Dcommands.py81 for i_command, opt_name in _option_inherits[command]:
82 if i_command == i_inherit and opt_name == attr_name:
112 for opt_name, default in _option_defaults['install']:
113 setattr(self, opt_name, default)
119 for parent, opt_name in _option_inherits['install']:
120 self.set_undefined_options(parent, (opt_name, opt_name))
135 for opt_name, default in _option_defaults['install_data']:
136 setattr(self, opt_name, default)
142 for parent, opt_name in _option_inherits['install_data']:
143 self.set_undefined_options(parent, (opt_name, opt_name))
[all …]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
Dcommands.py80 for i_command, opt_name in _option_inherits[command]:
81 if i_command == i_inherit and opt_name == attr_name:
111 for opt_name, default in _option_defaults['install']:
112 setattr(self, opt_name, default)
118 for parent, opt_name in _option_inherits['install']:
119 self.set_undefined_options(parent, (opt_name, opt_name))
134 for opt_name, default in _option_defaults['install_data']:
135 setattr(self, opt_name, default)
141 for parent, opt_name in _option_inherits['install_data']:
142 self.set_undefined_options(parent, (opt_name, opt_name))
[all …]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
Dcommands.py80 for i_command, opt_name in _option_inherits[command]:
81 if i_command == i_inherit and opt_name == attr_name:
111 for opt_name, default in _option_defaults['install']:
112 setattr(self, opt_name, default)
118 for parent, opt_name in _option_inherits['install']:
119 self.set_undefined_options(parent, (opt_name, opt_name))
134 for opt_name, default in _option_defaults['install_data']:
135 setattr(self, opt_name, default)
141 for parent, opt_name in _option_inherits['install_data']:
142 self.set_undefined_options(parent, (opt_name, opt_name))
[all …]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
Dcommands.py81 for i_command, opt_name in _option_inherits[command]:
82 if i_command == i_inherit and opt_name == attr_name:
112 for opt_name, default in _option_defaults['install']:
113 setattr(self, opt_name, default)
119 for parent, opt_name in _option_inherits['install']:
120 self.set_undefined_options(parent, (opt_name, opt_name))
135 for opt_name, default in _option_defaults['install_data']:
136 setattr(self, opt_name, default)
142 for parent, opt_name in _option_inherits['install_data']:
143 self.set_undefined_options(parent, (opt_name, opt_name))
[all …]
/external/python/cpython3/Lib/distutils/command/
Dinstall.py381 opt_name = opt[0]
382 if opt_name[-1] == "=":
383 opt_name = opt_name[0:-1]
384 if opt_name in self.negative_opt:
385 opt_name = self.negative_opt[opt_name]
386 opt_name = opt_name.translate(longopt_xlate)
387 val = not getattr(self, opt_name)
389 opt_name = opt_name.translate(longopt_xlate)
390 val = getattr(self, opt_name)
391 log.debug(" %s: %s", opt_name, val)
/external/python/cpython2/Lib/distutils/command/
Dinstall.py387 opt_name = opt[0]
388 if opt_name[-1] == "=":
389 opt_name = opt_name[0:-1]
390 if opt_name in self.negative_opt:
391 opt_name = string.translate(self.negative_opt[opt_name],
393 val = not getattr(self, opt_name)
395 opt_name = string.translate(opt_name, longopt_xlate)
396 val = getattr(self, opt_name)
397 print " %s: %s" % (opt_name, val)
/external/tensorflow/tensorflow/lite/tools/benchmark/ios/
Dbuild_benchmark_framework.sh31 while getopts "p" opt_name; do
32 case "$opt_name" in
/external/tensorflow/tensorflow/lite/tools/make/
Dbuild_ios_universal_lib.sh40 while getopts "a:p" opt_name; do
41 case "$opt_name" in
/external/mesa3d/src/mesa/main/
Dget_hash_generator.py211 for opt_name, opt_val in opts:
212 if opt_name == "-f":
/external/libwebsockets/include/libwebsockets/
Dlws-ws-ext.h158 const char *opt_name, const char *opt_val);
/external/perfetto/src/trace_processor/importers/proto/
Dstack_profile_tracker.cc138 base::Optional<std::string> opt_name = FindOrInsertString( in AddFrame() local
140 if (!opt_name) { in AddFrame()
145 const std::string& name = *opt_name; in AddFrame()
/external/libwebsockets/lib/roles/ws/ext/
Dextension.c358 const char *opt_name, const char *opt_val) in lws_set_extension_option() argument
374 oa.option_name = opt_name; in lws_set_extension_option()
/external/libaom/libaom/build/cmake/
Daom_optimization.cmake35 # $opt_name is used to name the target. $target_to_update is made dependent upon
41 function(add_intrinsics_object_library flag opt_name target_to_update sources)
45 set(target_name ${target_to_update}_${opt_name}_intrinsics)
/external/llvm-project/openmp/runtime/tools/
Dgenerate-def.pl170 my ( $opt_name, $opt_value ) = @_;
/external/python/cpython2/Lib/idlelib/
DconfigDialog.py1281 enables = [opt_name for opt_name in opt_list
1282 if opt_name.startswith('enable')]
1283 for opt_name in enables:
1284 opt_list.remove(opt_name)
1287 for opt_name in opt_list:
1289 ext_name, opt_name, raw=True)
1302 ext_name, opt_name, type=opt_type, raw=True,
1309 self.extensions[ext_name].append({'name': opt_name,
/external/python/cpython3/Lib/idlelib/
Dconfigdialog.py320 enables = [opt_name for opt_name in opt_list
321 if opt_name.startswith('enable')]
322 for opt_name in enables:
323 opt_list.remove(opt_name)
326 for opt_name in opt_list:
328 ext_name, opt_name, raw=True)
341 ext_name, opt_name, type=opt_type, raw=True,
348 self.extensions[ext_name].append({'name': opt_name,
/external/perfetto/src/trace_processor/importers/common/
Dslice_tracker.h91 StringId opt_name = {},
/external/llvm-project/mlir/test/mlir-tblgen/
Dop-format.mlir31 // CHECK: test.format_symbol_name_attr_op @opt_name
33 test.format_symbol_name_attr_op @opt_name
/external/llvm-project/mlir/include/mlir/Dialect/LLVMIR/
DLLVMTypes.h214 Optional<StringRef> opt_name(name); in createStructTy()
215 return createStructTy(elt1.getContext(), fields, opt_name); in createStructTy()
/external/perfetto/src/trace_processor/
Dexport_json.cc706 auto opt_name = thread_table.name()[utid]; in ExportThreadNames() local
707 if (!opt_name.is_null()) { in ExportThreadNames()
708 const char* thread_name = GetNonNullString(storage_, opt_name); in ExportThreadNames()
720 auto opt_name = process_table.name()[upid]; in ExportProcessNames() local
721 if (!opt_name.is_null()) { in ExportProcessNames()
722 const char* process_name = GetNonNullString(storage_, opt_name); in ExportProcessNames()
/external/autotest/utils/
Drun_pylint.py377 opt_name = args[2:].split('=')[0]
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCTrampolineHandler.cpp1190 const char *opt_name = g_opt_dispatch_names[(*pos).second]; in GetStepThroughDispatchPlan() local
1195 thread, *this, opt_name, trampoline_stop_others, step_in_should_stop); in GetStepThroughDispatchPlan()
/external/clang/tools/c-index-test/
Dc-index-test.c144 static int parse_remapped_files_with_opt(const char *opt_name, in parse_remapped_files_with_opt() argument
151 int prefix_len = strlen(opt_name); in parse_remapped_files_with_opt()
158 if (strncmp(argv[arg], opt_name, prefix_len)) in parse_remapped_files_with_opt()
182 "error: %sfrom:to argument is missing comma\n", opt_name); in parse_remapped_files_with_opt()
251 char opt_name[32]; in parse_remapped_files_with_try() local
258 sprintf(opt_name, "-remap-file-%d=", try_idx); in parse_remapped_files_with_try()
259 ret = parse_remapped_files_with_opt(opt_name, argc, argv, start_arg, in parse_remapped_files_with_try()
/external/llvm-project/clang/tools/c-index-test/
Dc-index-test.c215 static int parse_remapped_files_with_opt(const char *opt_name, in parse_remapped_files_with_opt() argument
222 int prefix_len = strlen(opt_name); in parse_remapped_files_with_opt()
229 if (strncmp(argv[arg], opt_name, prefix_len)) in parse_remapped_files_with_opt()
254 "error: %sfrom:to argument is missing comma\n", opt_name); in parse_remapped_files_with_opt()
325 char opt_name[32]; in parse_remapped_files_with_try() local
332 sprintf(opt_name, "-remap-file-%d=", try_idx); in parse_remapped_files_with_try()
333 ret = parse_remapped_files_with_opt(opt_name, argc, argv, start_arg, in parse_remapped_files_with_try()
/external/libwebsockets/lib/core-net/
Dwsi.c563 const char *opt_name, const char *opt_val) in lws_set_extension_option() argument

12