Home
last modified time | relevance | path

Searched refs:sorted_list (Results 1 – 3 of 3) sorted by relevance

/external/toolchain-utils/binary_search_tool/
Dbinary_search_perforce.py70 self.sorted_list = []
83 def SetSortedList(self, sorted_list): argument
84 assert len(sorted_list) > 0
85 self.sorted_list = sorted_list
87 self.hi = len(sorted_list) - 1
90 for i in range(len(self.sorted_list)):
91 bsp = BinarySearchPoint(self.sorted_list[i], -1, 'Not yet done.')
96 (self.sorted_list[self.current], self.current, status))
101 bsp = BinarySearchPoint(self.sorted_list[self.current], status, tag)
117 ' at index: %d' % (self.sorted_list[self.current], self.lo))
[all …]
/external/autotest/client/site_tests/platform_ToolchainOptions/
Dplatform_ToolchainOptions.py86 sorted_list = list(self.filtered_set)
87 sorted_list.sort()
88 m += "\nFAILED:\n%s\n\n" % "\n".join(sorted_list)
101 sorted_list = list(self.filtered_set)
102 sorted_list.sort()
103 m += "FAILED:\n%s" % "\n".join(sorted_list)
108 sorted_list = list(self.new_passes)
109 sorted_list.sort()
111 "\n".join(sorted_list))
/external/toolchain-utils/
Dgenerate-waterfall-reports.py188 sorted_list = sorted(err_list, key=lambda x: x[0], reverse=True)
189 err_group = [len(sorted_list), suite, test, err_msg, sorted_list]
318 sorted_list = sorted(err_list, key=lambda x: x[0], reverse=True)
319 err_group = [len(sorted_list), suite, test, err_msg, sorted_list]