/build/lite/hb_internal/common/ |
D | config.py | 69 def component_type(self, value): argument 70 self._component_type = value 78 def target_os(self, value): argument 79 self._target_os = value 87 def target_cpu(self, value): argument 88 self._target_cpu = value 96 def version(self, value): argument 97 self._version = value 105 def compile_config(self, value): argument 106 self._compile_config = value [all …]
|
/build/tools/component_tools/ |
D | component_node.py | 34 def module_name(self, value): argument 35 self._module_name = value 42 def subsystem_name(self, value): argument 43 self._subsystem_name = value 50 def part_name(self, value): argument 51 self._part_name = value 58 def deps(self, value): argument 59 self._deps = value 66 def external_deps(self, value): argument 67 self._external_deps = value [all …]
|
/build/ |
D | gn_helpers.py | 30 def ToGNString(value, allow_dicts=True): argument 36 if isinstance(value, str): 37 if value.find('\n') >= 0: 40 value.replace('\\', '\\\\').replace('"', '\\"').replace('$', '\\$') + \ 43 if isinstance(value, str): 44 return ToGNString(value.encode('utf-8')) 46 if isinstance(value, bool): 47 if value: 51 if isinstance(value, list): 52 return '[ %s ]' % ', '.join(ToGNString(v) for v in value) [all …]
|
/build/config/mac/ |
D | sdk_info.py | 96 value = settings[key] variable 97 if isinstance(value, bytes): 98 value = value.decode() variable 99 value = '"%s"' % value variable 100 print('%s=%s' % (key, value))
|
/build/loader/ |
D | load_ohos_build.py | 386 for part_name, value in parts_config.items(): 387 if 'variants' in value: 388 variants = value.get('variants') 400 part_obj = PartObject(part_name, variant, value, toolchain, 419 if 'hisysevent_config' in value: 420 _config_files = value.get('hisysevent_config') 541 …self._parts_variants = {key : value for key, value in self._parts_variants.items() if save_part ==… 542 … self._part_list = {key : value for key, value in self._part_list.items() if save_part == key} 543 …self._part_targets_label = {key : value for key, value in self._part_targets_label.items() if save… 544 …self._parts_info_dict = {key : value for key, value in self._parts_info_dict.items() if save_part … [all …]
|
/build/lite/ |
D | hap_pack.py | 82 for key, value in cmd_dict.items(): 83 if value: 84 packing_cmd.extend([key, value]) 147 for key, value in cmd_dict.items(): 148 if value: 149 signing_cmd.extend([key, value])
|
/build/lite/ndk/doc/config/ |
D | Doxyfile_CPP | 26 # TAG = value [value, ...] 28 # TAG += value [value, ...] 40 # The default value is: UTF-8. 48 # The default value is: My Project. 84 # The default value is: NO. 99 # The default value is: English. 106 # The default value is: YES. 115 # The default value is: YES. 133 # The default value is: NO. 141 # The default value is: NO. [all …]
|
D | Doxyfile_C | 26 # TAG = value [value, ...] 28 # TAG += value [value, ...] 40 # The default value is: UTF-8. 48 # The default value is: My Project. 84 # The default value is: NO. 99 # The default value is: English. 106 # The default value is: YES. 115 # The default value is: YES. 133 # The default value is: NO. 141 # The default value is: NO. [all …]
|
/build/lite/ndk/doc/ |
D | gen_doc.py | 49 for (key, value) in list(keys.items()): 50 value = value.replace('\\', '\\\\') 51 contents = re.sub(key, value, contents)
|
/build/misc/mac/ |
D | find_sdk.py | 24 def __init__(self, value): argument 25 self.value = value 28 return repr(self.value)
|
/build/lite/ndk/build/toolchain/ |
D | clang.gni | 23 assert(defined(invoker.cc), "clang toolchain must specify a \"cc\" value") 24 assert(defined(invoker.cxx), "clang toolchain must specify a \"cxx\" value") 25 assert(defined(invoker.ar), "clang toolchain must specify a \"ar\" value") 26 assert(defined(invoker.as), "clang toolchain must specify a \"as\" value") 27 assert(defined(invoker.ld), "clang toolchain must specify a \"ld\" value")
|
D | gcc.gni | 22 assert(defined(invoker.ar), "gcc toolchain must specify a \"ar\" value") 23 assert(defined(invoker.cc), "gcc toolchain must specify a \"cc\" value") 24 assert(defined(invoker.cxx), "gcc toolchain must specify a \"cxx\" value") 25 assert(defined(invoker.ld), "gcc toolchain must specify a \"ld\" value")
|
/build/lite/toolchain/ |
D | clang.gni | 16 assert(defined(invoker.cc), "clang toolchain must specify a \"cc\" value") 17 assert(defined(invoker.cxx), "clang toolchain must specify a \"cxx\" value") 18 assert(defined(invoker.ar), "clang toolchain must specify a \"ar\" value") 19 assert(defined(invoker.ld), "clang toolchain must specify a \"ld\" value")
|
D | gcc.gni | 16 assert(defined(invoker.ar), "gcc toolchain must specify a \"ar\" value") 17 assert(defined(invoker.cc), "gcc toolchain must specify a \"cc\" value") 18 assert(defined(invoker.cxx), "gcc toolchain must specify a \"cxx\" value") 19 assert(defined(invoker.ld), "gcc toolchain must specify a \"ld\" value")
|
D | iccarm.gni | 18 assert(defined(invoker.ar), "gcc_toolchain() must specify a \"ar\" value") 19 assert(defined(invoker.cc), "gcc_toolchain() must specify a \"cc\" value") 20 assert(defined(invoker.cxx), "gcc_toolchain() must specify a \"cxx\" value") 21 assert(defined(invoker.ld), "gcc_toolchain() must specify a \"ld\" value")
|
/build/ohos/sa_profile/ |
D | sa_profile_archive.py | 65 for key, value in all_sa_info_files_dict.items(): 70 for _file in value:
|
/build/ohos/notice/ |
D | merge_notice_files.py | 108 for value in file_hash: 111 for filename in value: 119 for filename in value: 131 with open(value[0], errors='ignore') as temp_file_hd:
|
/build/toolchain/ |
D | BUILD.gn | 13 action_pool_depth = exec_script("get_cpu_count.py", [], "value")
|
D | concurrent_links.gni | 18 # available, so we call out to a script to get the right value. 57 concurrent_links = exec_script("get_concurrent_links.py", _args, "value")
|
/build/ohos/ndk/ |
D | Doxyfile | 24 # TAG = value [value, ...] 26 # TAG += value [value, ...]
|
/build/scripts/ |
D | entry.py | 69 key, value = item.split(':') 70 if key == 'PYCACHE_ENABLE' and value == 'true':
|
/build/ohos/packages/ |
D | modules_install.py | 72 for value in modules_info_dict.values(): 73 module_info = read_json_file(value) 76 "read module install info file '{}' error.".format(value))
|
/build/lite/hb_internal/cts/ |
D | list.py | 60 value = choice.get('value', name) 62 self.choices.append((name, value, disabled))
|
/build/lite/hb_internal/build/ |
D | build.py | 196 variable, value = gn_arg.split('=') 197 build.register_args(variable, value, False)
|
/build/lite/testfwk/ |
D | lite_testcase_resource_copy.py | 96 def _parse_res_value(value): argument 97 res_file = value.split('->')[0].strip()
|