Home
last modified time | relevance | path

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

/external/toolchain-utils/binary_search_tool/
Dbinary_search_perforce.py134 self.sorted_list = []
147 def SetSortedList(self, sorted_list): argument
148 assert len(sorted_list) > 0
149 self.sorted_list = sorted_list
151 self.hi = len(sorted_list) - 1
154 for i in range(len(self.sorted_list)):
155 bsp = BinarySearchPoint(self.sorted_list[i], -1, 'Not yet done.')
160 (self.sorted_list[self.current], self.current, status))
165 bsp = BinarySearchPoint(self.sorted_list[self.current], status, tag)
181 ' 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/tensorflow/tensorflow/core/util/
Dstats_calculator.cc94 std::priority_queue<std::pair<std::string, const Detail*>> sorted_list; in OrderNodesByMetric() local
124 sorted_list.emplace(stream.str(), detail); in OrderNodesByMetric()
127 while (!sorted_list.empty()) { in OrderNodesByMetric()
128 auto entry = sorted_list.top(); in OrderNodesByMetric()
129 sorted_list.pop(); in OrderNodesByMetric()
/external/toolchain-utils/
Dgenerate-waterfall-reports.py181 sorted_list = sorted(err_list, key=lambda x: x[0], reverse=True)
182 err_group = [len(sorted_list), suite, test, err_msg, sorted_list]
307 sorted_list = sorted(err_list, key=lambda x: x[0], reverse=True)
308 err_group = [len(sorted_list), suite, test, err_msg, sorted_list]
/external/u-boot/tools/buildman/
Dcontrol.py143 sorted_list = toolchains.ListArchs()
145 ' '.join(sorted_list))