Searched refs:index (Results 1 - 25 of 26) sorted by relevance
12
/build/build_scripts/ |
H A D | build.py | 76 index = args_list.index("--python-dir") 77 if index < len(args_list) - 1: 78 python_dir = args_list[index + 1] 79 del args_list[index: index + 2]
|
/build/scripts/ |
H A D | generate_js_bytecode.py | 85 src_index = cmd.index(input_arguments.src_js) 88 src_index = cmd.index(input_arguments.src_js) 91 src_index = cmd.index(input_arguments.src_js) 94 src_index = cmd.index(input_arguments.src_js) 97 src_index = cmd.index(input_arguments.src_js)
|
/build/test/example/ |
H A D | mylogger.py | 67 index = self.baseFilename.find("." + self.suftime) 68 if index == -1: 69 index = self.baseFilename.rfind(".") 70 self.baseFilename = self.baseFilename[:index]
|
H A D | performance_test.py | 240 for index, row in enumerate(data_rows[1:]): 243 elif float(row[-1]) <= float(self.overflow) and index % 2 == 0: 251 for index, row in enumerate(data_rows[1:]): 252 if index % 2 == 0:
|
/build/toolchain/ |
H A D | gcc_link_wrapper.py | 52 index = command.index(item) 55 command[index] = new_crtbegin
|
H A D | rustc_wrapper.py | 40 ldflags_index = remaining_args.index("LDFLAGS") 41 rustenv_index = remaining_args.index("RUSTENV", ldflags_index)
|
/build/ohos/sa_profile/sa_info_process/ |
H A D | sort_sa_by_bootphase.py | 90 index = deps_visit_cnt.get(cur_systemability) 91 cur_dependency = dependencies[index] 95 depend_path.index(cur_dependency) 247 self.ordered_systemability_names.index(name_node) 275 idx_dep = systemabilities.index(dependency) 294 idx_self = systemabilities.index(systemability)
|
/build/tools/module_dependence/ |
H A D | module_deps_tree.py | 112 for index, value in enumerate(children): 113 children[index] = self.graph_tree(children[index])
|
/build/toolchain/mac/ |
H A D | linker_driver.py | 208 output_flag_index = full_args.index('-o') 210 output_flag_index = full_args.index('-output')
|
/build/hb/util/preloader/ |
H A D | parse_vendor_product_config.py | 28 match = feat.index("=") 55 match = feat.index("=")
|
/build/ohos/images/mkimage/ |
H A D | mkimages.py | 40 index = src_dir.rfind('/') 41 root_dir = "%sroot" % src_dir[:index + 1]
|
/build/tools/component_tools/static_check/ |
H A D | csct.py | 167 bundle_errs.to_excel(writer, sheet_name="bundle_check", index=None) 168 gn_errs.to_excel(writer, sheet_name="gn_check", index=None)
|
/build/hb/services/ |
H A D | menu.py | 331 for index, choice in enumerate(choices): 344 self.selected_option_index = index 351 def append(index: int, choice: list): 352 selected = (index == self.selected_option_index) 356 # bind option with this index to mouse event 357 self.selected_option_index = index
|
H A D | gn.py | 147 sort_index = gn_path_cmd.index 172 sort_index = gn_desc_cmd.index
|
H A D | hpm.py | 116 variant = hpm_build_cmd[hpm_build_cmd.index("--variant") + 1]
|
/build/config/components/hc_gen/ |
H A D | hcs_build_info.py | 74 index = self.read_index + peek_count 75 if index >= self.data_len: 77 return Char(False, self.data[index])
|
/build/tools/component_tools/static_check/gn_check/ |
H A D | check_gn.py | 272 for index, _ in enumerate(bad_target_to_excel): 273 bad_target_to_excel[index][:2] = [content['subsystem'], content['component']] if key.startswith( 274 path) else bad_target_to_excel[index][:2]
|
/build/hb/containers/ |
H A D | status.py | 75 "-t" in sys.argv and sys.argv[sys.argv.index("-t") + 1][0] == '-'))
|
H A D | arg.py | 263 convert_assigned_value.sort(key=sys.argv[2:].index)
|
/build/hb/util/ |
H A D | monitor.py | 38 key_indices = {key: index for index, key in enumerate(target_keys)}
|
H A D | system_util.py | 51 (sys.argv[-1] == "-t" or ("-t" in sys.argv and sys.argv[sys.argv.index("-t") + 1][0] == '-'))):
|
H A D | product_util.py | 386 match = feat.index("=") 413 match = feat.index("=")
|
/build/config/components/hdi/ |
H A D | build_hdi_files_info.py | 87 index = self.read_index + peek_count 88 if index >= self.data_len: 90 return Char(False, self.data[index]) 559 for index in range(name_len): 560 cur_char = file_name[index] 562 if index > 1:
|
/build/config/components/init/seccomp/scripts/ |
H A D | generate_code_from_policy.py | 573 def calculate_step(self, index): 574 for i in range(index + 1, len(self.syscall_nr_policy_list)): 575 if self.syscall_nr_policy_list[index] < self.syscall_nr_policy_list[i]: 576 step = i - index
|
/build/tools/component_tools/static_check/bundle_check/ |
H A D | bundle_json_check.py | 145 err_df.to_excel(outpath, index=None)
|
Completed in 13 milliseconds
12