Home
last modified time | relevance | path

Searched refs:index (Results 1 - 25 of 26) sorted by relevance

12

/build/build_scripts/
H A Dbuild.py76 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 Dgenerate_js_bytecode.py85 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 Dmylogger.py67 index = self.baseFilename.find("." + self.suftime)
68 if index == -1:
69 index = self.baseFilename.rfind(".")
70 self.baseFilename = self.baseFilename[:index]
H A Dperformance_test.py240 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 Dgcc_link_wrapper.py52 index = command.index(item)
55 command[index] = new_crtbegin
H A Drustc_wrapper.py40 ldflags_index = remaining_args.index("LDFLAGS")
41 rustenv_index = remaining_args.index("RUSTENV", ldflags_index)
/build/ohos/sa_profile/sa_info_process/
H A Dsort_sa_by_bootphase.py90 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 Dmodule_deps_tree.py112 for index, value in enumerate(children):
113 children[index] = self.graph_tree(children[index])
/build/toolchain/mac/
H A Dlinker_driver.py208 output_flag_index = full_args.index('-o')
210 output_flag_index = full_args.index('-output')
/build/hb/util/preloader/
H A Dparse_vendor_product_config.py28 match = feat.index("=")
55 match = feat.index("=")
/build/ohos/images/mkimage/
H A Dmkimages.py40 index = src_dir.rfind('/')
41 root_dir = "%sroot" % src_dir[:index + 1]
/build/tools/component_tools/static_check/
H A Dcsct.py167 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 Dmenu.py331 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 Dgn.py147 sort_index = gn_path_cmd.index
172 sort_index = gn_desc_cmd.index
H A Dhpm.py116 variant = hpm_build_cmd[hpm_build_cmd.index("--variant") + 1]
/build/config/components/hc_gen/
H A Dhcs_build_info.py74 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 Dcheck_gn.py272 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 Dstatus.py75 "-t" in sys.argv and sys.argv[sys.argv.index("-t") + 1][0] == '-'))
H A Darg.py263 convert_assigned_value.sort(key=sys.argv[2:].index)
/build/hb/util/
H A Dmonitor.py38 key_indices = {key: index for index, key in enumerate(target_keys)}
H A Dsystem_util.py51 (sys.argv[-1] == "-t" or ("-t" in sys.argv and sys.argv[sys.argv.index("-t") + 1][0] == '-'))):
H A Dproduct_util.py386 match = feat.index("=")
413 match = feat.index("=")
/build/config/components/hdi/
H A Dbuild_hdi_files_info.py87 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 Dgenerate_code_from_policy.py573 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 Dbundle_json_check.py145 err_df.to_excel(outpath, index=None)

Completed in 13 milliseconds

12