Home
last modified time | relevance | path

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

/art/compiler/debug/
Delf_debug_frame_writer.h182 std::vector<const MethodDebugInfo*> sorted_method_infos; in WriteCFISection() local
183 sorted_method_infos.reserve(method_infos.size()); in WriteCFISection()
186 sorted_method_infos.push_back(&method_infos[i]); in WriteCFISection()
189 if (sorted_method_infos.empty()) { in WriteCFISection()
193 sorted_method_infos.begin(), in WriteCFISection()
194 sorted_method_infos.end(), in WriteCFISection()
204 binary_search_table.reserve(2 * sorted_method_infos.size()); in WriteCFISection()
206 patch_locations.reserve(sorted_method_infos.size()); in WriteCFISection()
223 for (const MethodDebugInfo* mi : sorted_method_infos) { in WriteCFISection()